|
@@ -8,6 +8,7 @@
|
|
|
<result property="investigateTableId" column="investigate_table_id"/>
|
|
|
<result property="investigateName" column="investigate_name"/>
|
|
|
<result property="content" column="content"/>
|
|
|
+ <result property="beginTime" column="begin_time"/>
|
|
|
<result property="endTime" column="end_time"/>
|
|
|
<result property="cipher" column="cipher"/>
|
|
|
<result property="createBy" column="create_by"/>
|
|
@@ -45,6 +46,7 @@
|
|
|
select investigate_table_id,
|
|
|
investigate_name,
|
|
|
content,
|
|
|
+ begin_time,
|
|
|
end_time,
|
|
|
cipher,
|
|
|
create_by,
|
|
@@ -61,6 +63,7 @@
|
|
|
t.investigate_name,
|
|
|
t.content,
|
|
|
t.end_time,
|
|
|
+ t.begin_time,
|
|
|
t.CIPHER,
|
|
|
t.create_by,
|
|
|
t.create_time,
|
|
@@ -98,6 +101,7 @@
|
|
|
t.investigate_name,
|
|
|
t.content,
|
|
|
t.end_time,
|
|
|
+ t.begin_time,
|
|
|
t.CIPHER,
|
|
|
t.create_by,
|
|
|
t.create_time,
|
|
@@ -128,6 +132,7 @@
|
|
|
<if test="investigateName != null">investigate_name,</if>
|
|
|
<if test="content != null">content,</if>
|
|
|
<if test="endTime != null">end_time,</if>
|
|
|
+ <if test="beginTime != null">begin_time,</if>
|
|
|
<if test="cipher != null">cipher,</if>
|
|
|
<if test="createBy != null">create_by,</if>
|
|
|
<if test="createTime != null">create_time,</if>
|
|
@@ -139,6 +144,7 @@
|
|
|
<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="cipher != null">#{cipher},</if>
|
|
|
<if test="createBy != null">#{createBy},</if>
|
|
|
<if test="createTime != null">#{createTime},</if>
|
|
@@ -154,6 +160,7 @@
|
|
|
<if test="investigateName != null">investigate_name = #{investigateName},</if>
|
|
|
<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="cipher != null">cipher = #{cipher},</if>
|
|
|
<if test="createBy != null">create_by = #{createBy},</if>
|
|
|
<if test="createTime != null">create_time = #{createTime},</if>
|