|
@@ -11,6 +11,7 @@
|
|
|
<result property="beginTime" column="begin_time"/>
|
|
|
<result property="endTime" column="end_time"/>
|
|
|
<result property="cipher" column="cipher"/>
|
|
|
+ <result property="receptionUnit" column="reception_unit"/>
|
|
|
<result property="investigateDispositionIds" column="investigate_disposition_ids"/>
|
|
|
<result property="investigateDispositionIdsJieDai" column="investigate_disposition_ids_jie_dai"/>
|
|
|
<result property="createBy" column="create_by"/>
|
|
@@ -53,6 +54,7 @@
|
|
|
investigate_disposition_ids,
|
|
|
investigate_disposition_ids_jie_dai,
|
|
|
cipher,
|
|
|
+ reception_unit,
|
|
|
create_by,
|
|
|
create_time,
|
|
|
update_by,
|
|
@@ -70,7 +72,8 @@
|
|
|
t.begin_time,
|
|
|
t.investigate_disposition_ids,
|
|
|
t.investigate_disposition_ids_jie_dai,
|
|
|
- t.CIPHER,
|
|
|
+ t.cipher,
|
|
|
+ t.reception_unit,
|
|
|
t.create_by,
|
|
|
t.create_time,
|
|
|
t.update_by,
|
|
@@ -97,7 +100,8 @@
|
|
|
t.begin_time,
|
|
|
t.investigate_disposition_ids,
|
|
|
t.investigate_disposition_ids_jie_dai,
|
|
|
- t.CIPHER,
|
|
|
+ t.cipher,
|
|
|
+ t.reception_unit,
|
|
|
t.create_by,
|
|
|
t.create_time,
|
|
|
t.update_by,
|
|
@@ -136,7 +140,8 @@
|
|
|
t.begin_time,
|
|
|
t.investigate_disposition_ids,
|
|
|
t.investigate_disposition_ids_jie_dai,
|
|
|
- t.CIPHER,
|
|
|
+ t.cipher,
|
|
|
+ t.reception_unit,
|
|
|
t.create_by,
|
|
|
t.create_time,
|
|
|
t.update_by,
|
|
@@ -157,6 +162,7 @@
|
|
|
left join investigate_user u on t.investigate_table_id = u.investigate_id
|
|
|
left join investigate_disposition_table idt on idt.investigate_table_id = t.investigate_table_id
|
|
|
where t.investigate_table_id = #{investigateTableId}
|
|
|
+ order by idt.create_time
|
|
|
</select>
|
|
|
|
|
|
<insert id="insertInvestigateTable" parameterType="InvestigateTable" useGeneratedKeys="true"
|
|
@@ -170,6 +176,7 @@
|
|
|
<if test="investigateDispositionIds != null">investigate_disposition_ids,</if>
|
|
|
<if test="investigateDispositionIdsJieDai != null">investigate_disposition_ids_jie_dai,</if>
|
|
|
<if test="cipher != null">cipher,</if>
|
|
|
+ <if test="receptionUnit != null">reception_unit,</if>
|
|
|
<if test="createBy != null">create_by,</if>
|
|
|
<if test="createTime != null">create_time,</if>
|
|
|
<if test="updateBy != null">update_by,</if>
|
|
@@ -184,6 +191,7 @@
|
|
|
<if test="investigateDispositionIds != null">#{investigateDispositionIds},</if>
|
|
|
<if test="investigateDispositionIdsJieDai != null">#{investigateDispositionIdsJieDai},</if>
|
|
|
<if test="cipher != null">#{cipher},</if>
|
|
|
+ <if test="receptionUnit != null">#{receptionUnit},</if>
|
|
|
<if test="createBy != null">#{createBy},</if>
|
|
|
<if test="createTime != null">#{createTime},</if>
|
|
|
<if test="updateBy != null">#{updateBy},</if>
|
|
@@ -202,6 +210,7 @@
|
|
|
<if test="investigateDispositionIds != null">investigate_disposition_ids = #{investigateDispositionIds},</if>
|
|
|
<if test="investigateDispositionIdsJieDai != null">investigate_disposition_ids_jie_dai = #{investigateDispositionIdsJieDai},</if>
|
|
|
<if test="cipher != null">cipher = #{cipher},</if>
|
|
|
+ <if test="receptionUnit != null">reception_unit = #{receptionUnit},</if>
|
|
|
<if test="createBy != null">create_by = #{createBy},</if>
|
|
|
<if test="createTime != null">create_time = #{createTime},</if>
|
|
|
<if test="updateBy != null">update_by = #{updateBy},</if>
|