|
|
@@ -17,7 +17,7 @@
|
|
|
<result property="enterpriseProblems" column="enterprise_problems" jdbcType="VARCHAR"/>
|
|
|
<result property="solution" column="solution" jdbcType="VARCHAR"/>
|
|
|
<result property="inspectionConclusion" column="inspection_conclusion" jdbcType="INTEGER"/>
|
|
|
- <result property="remindFollow" column="remind_follow" jdbcType="VARCHAR"/>
|
|
|
+ <result property="remindFollow" column="remind_follow" jdbcType="INTEGER"/>
|
|
|
<result property="remarks" column="remarks" jdbcType="VARCHAR"/>
|
|
|
<result property="aid" column="aid" jdbcType="VARCHAR"/>
|
|
|
<result property="aname" column="aname" jdbcType="VARCHAR"/>
|
|
|
@@ -120,7 +120,7 @@ create_time = values(create_time)
|
|
|
<if test="inspectionConclusion != null">
|
|
|
inspection_conclusion = #{inspectionConclusion},
|
|
|
</if>
|
|
|
- <if test="remindFollow != null and remindFollow != ''">
|
|
|
+ <if test="remindFollow != null">
|
|
|
remind_follow = #{remindFollow},
|
|
|
</if>
|
|
|
<if test="remarks != null and remarks != ''">
|
|
|
@@ -188,7 +188,7 @@ create_time = values(create_time)
|
|
|
<if test="inspectionConclusion != null">
|
|
|
and inspection_conclusion = #{inspectionConclusion}
|
|
|
</if>
|
|
|
- <if test="remindFollow != null and remindFollow != ''">
|
|
|
+ <if test="remindFollow != null">
|
|
|
and remind_follow = #{remindFollow}
|
|
|
</if>
|
|
|
<if test="remarks != null and remarks != ''">
|
|
|
@@ -256,7 +256,7 @@ create_time = values(create_time)
|
|
|
<if test="inspectionConclusion != null">
|
|
|
and inspection_conclusion = #{inspectionConclusion}
|
|
|
</if>
|
|
|
- <if test="remindFollow != null and remindFollow != ''">
|
|
|
+ <if test="remindFollow != null">
|
|
|
and remind_follow = #{remindFollow}
|
|
|
</if>
|
|
|
<if test="remarks != null and remarks != ''">
|