|
|
@@ -54,6 +54,7 @@
|
|
54
|
54
|
<result property="checkPointId" column="check_point_id"/>
|
|
55
|
55
|
<result property="checkPointName" column="check_point_name"/>
|
|
56
|
56
|
<result property="appEdited" column="app_edited"/>
|
|
|
57
|
+ <result property="isActiveConcealment" column="is_active_concealment"/>
|
|
57
|
58
|
<result property="remark" column="remark"/>
|
|
58
|
59
|
</resultMap>
|
|
59
|
60
|
|
|
|
@@ -107,6 +108,7 @@
|
|
107
|
108
|
check_point_id,
|
|
108
|
109
|
check_point_name,
|
|
109
|
110
|
app_edited,
|
|
|
111
|
+ is_active_concealment,
|
|
110
|
112
|
remark
|
|
111
|
113
|
from failed_match_item
|
|
112
|
114
|
</sql>
|
|
|
@@ -192,6 +194,8 @@
|
|
192
|
194
|
<if test="prohibitedItemCategoryId != null">prohibited_item_category_id,</if>
|
|
193
|
195
|
<if test="checkPointId != null">check_point_id,</if>
|
|
194
|
196
|
<if test="checkPointName != null">check_point_name,</if>
|
|
|
197
|
+ <if test="appEdited != null">app_edited,</if>
|
|
|
198
|
+ <if test="isActiveConcealment != null">is_active_concealment,</if>
|
|
195
|
199
|
<if test="remark != null">remark,</if>
|
|
196
|
200
|
</trim>
|
|
197
|
201
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
@@ -242,6 +246,8 @@
|
|
242
|
246
|
<if test="prohibitedItemCategoryId != null">#{prohibitedItemCategoryId},</if>
|
|
243
|
247
|
<if test="checkPointId != null">#{checkPointId},</if>
|
|
244
|
248
|
<if test="checkPointName != null">#{checkPointName},</if>
|
|
|
249
|
+ <if test="appEdited != null">#{appEdited},</if>
|
|
|
250
|
+ <if test="isActiveConcealment != null">#{isActiveConcealment},</if>
|
|
245
|
251
|
<if test="remark != null">#{remark},</if>
|
|
246
|
252
|
</trim>
|
|
247
|
253
|
</insert>
|
|
|
@@ -295,6 +301,7 @@
|
|
295
|
301
|
<if test="checkPointId != null">check_point_id = #{checkPointId},</if>
|
|
296
|
302
|
<if test="checkPointName != null">check_point_name = #{checkPointName},</if>
|
|
297
|
303
|
<if test="appEdited != null">app_edited = #{appEdited},</if>
|
|
|
304
|
+ <if test="isActiveConcealment != null">is_active_concealment = #{isActiveConcealment},</if>
|
|
298
|
305
|
<if test="remark != null">remark = #{remark},</if>
|
|
299
|
306
|
</trim>
|
|
300
|
307
|
where id = #{id}
|