|
@@ -11,6 +11,7 @@
|
|
|
<result property="beginTime" column="begin_time"/>
|
|
|
<result property="endTime" column="end_time"/>
|
|
|
<result property="cipher" column="cipher"/>
|
|
|
+ <result property="investigateDispositionIds" column="investigate_disposition_ids"/>
|
|
|
<result property="createBy" column="create_by"/>
|
|
|
<result property="createTime" column="create_time"/>
|
|
|
<result property="updateBy" column="update_by"/>
|
|
@@ -48,6 +49,7 @@
|
|
|
content,
|
|
|
begin_time,
|
|
|
end_time,
|
|
|
+ investigate_disposition_ids,
|
|
|
cipher,
|
|
|
create_by,
|
|
|
create_time,
|
|
@@ -64,6 +66,7 @@
|
|
|
t.content,
|
|
|
t.end_time,
|
|
|
t.begin_time,
|
|
|
+ t.investigate_disposition_ids,
|
|
|
t.CIPHER,
|
|
|
t.create_by,
|
|
|
t.create_time,
|
|
@@ -102,6 +105,7 @@
|
|
|
t.content,
|
|
|
t.end_time,
|
|
|
t.begin_time,
|
|
|
+ t.investigate_disposition_ids,
|
|
|
t.CIPHER,
|
|
|
t.create_by,
|
|
|
t.create_time,
|
|
@@ -133,6 +137,7 @@
|
|
|
<if test="content != null">content,</if>
|
|
|
<if test="endTime != null">end_time,</if>
|
|
|
<if test="beginTime != null">begin_time,</if>
|
|
|
+ <if test="investigateDispositionIds != null">investigate_disposition_ids,</if>
|
|
|
<if test="cipher != null">cipher,</if>
|
|
|
<if test="createBy != null">create_by,</if>
|
|
|
<if test="createTime != null">create_time,</if>
|
|
@@ -144,7 +149,8 @@
|
|
|
<if test="investigateName != null">#{investigateName},</if>
|
|
|
<if test="content != null">#{content},</if>
|
|
|
<if test="endTime != null">#{endTime},</if>
|
|
|
- <if test="beginTime != null">#{begin_time},</if>
|
|
|
+ <if test="beginTime != null">#{beginTime},</if>
|
|
|
+ <if test="investigateDispositionIds != null">#{investigateDispositionIds},</if>
|
|
|
<if test="cipher != null">#{cipher},</if>
|
|
|
<if test="createBy != null">#{createBy},</if>
|
|
|
<if test="createTime != null">#{createTime},</if>
|
|
@@ -161,6 +167,7 @@
|
|
|
<if test="content != null">content = #{content},</if>
|
|
|
<if test="endTime != null">end_time = #{endTime},</if>
|
|
|
<if test="beginTime != null">begin_time = #{beginTime},</if>
|
|
|
+ <if test="investigateDispositionIds != null">investigate_disposition_ids = #{investigateDispositionIds},</if>
|
|
|
<if test="cipher != null">cipher = #{cipher},</if>
|
|
|
<if test="createBy != null">create_by = #{createBy},</if>
|
|
|
<if test="createTime != null">create_time = #{createTime},</if>
|