|
@@ -73,6 +73,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="recordId != null">record_id = #{recordId},</if>
|
|
|
<if test="itemId != null">item_id = #{itemId},</if>
|
|
|
<if test="standardStatus != null">standard_status = #{standardStatus},</if>
|
|
|
+ <if test="remark != null">remark = #{remark},</if>
|
|
|
<if test="createTime != null">create_time = #{createTime},</if>
|
|
|
<if test="createBy != null">create_by = #{createBy},</if>
|
|
|
<if test="createName != null">create_name = #{createName},</if>
|
|
@@ -98,14 +99,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
|
<insert id="insertList" parameterType="list">
|
|
|
insert into centerdata_t_housingconstruction_safetyinspectionrecordsdetail
|
|
|
- (id, record_id, item_id, standard_status, item_sort, remark, create_time, create_by, create_name, update_time, update_by, update_name, dept_id, dept_name)
|
|
|
+ (id, record_id, item_id, standard_status, remark, create_time, create_by, create_name, update_time, update_by, update_name, dept_id, dept_name)
|
|
|
values
|
|
|
<foreach collection="list" item="detail" open="(" separator="),(" close=")">
|
|
|
#{detail.id},
|
|
|
#{detail.recordId},
|
|
|
#{detail.itemId},
|
|
|
#{detail.standardStatus},
|
|
|
- #{detail.itemSort},
|
|
|
#{detail.remark},
|
|
|
#{detail.createTime},
|
|
|
#{detail.createBy},
|