|
|
@@ -83,7 +83,7 @@
|
|
|
<result property="days" column="days" jdbcType="INTEGER"/>
|
|
|
<result property="scheme" column="scheme" jdbcType="INTEGER"/>
|
|
|
<result property="unilateralService" column="unilateral_service" jdbcType="INTEGER"/>
|
|
|
- <result property="progressTid" column="progress_tid" jdbcType="VARCHAR"/>
|
|
|
+ <result property="progressTid" column="progress_tid" jdbcType="INTEGER"/>
|
|
|
</resultMap>
|
|
|
|
|
|
<sql id="TOrderTaskAllSql">
|
|
|
@@ -442,7 +442,7 @@ progress_tid = values(progress_tid)
|
|
|
<if test="unilateralService != null">
|
|
|
unilateral_service = #{unilateralService},
|
|
|
</if>
|
|
|
- <if test="progressTid != null and progressTid != ''">
|
|
|
+ <if test="progressTid != null">
|
|
|
progress_tid = #{progressTid},
|
|
|
</if>
|
|
|
</set>
|
|
|
@@ -696,7 +696,7 @@ progress_tid = values(progress_tid)
|
|
|
<if test="unilateralService != null">
|
|
|
and unilateral_service = #{unilateralService}
|
|
|
</if>
|
|
|
- <if test="progressTid != null and progressTid != ''">
|
|
|
+ <if test="progressTid != null">
|
|
|
and progress_tid = #{progressTid}
|
|
|
</if>
|
|
|
</where>
|
|
|
@@ -950,7 +950,7 @@ progress_tid = values(progress_tid)
|
|
|
<if test="unilateralService != null">
|
|
|
and unilateral_service = #{unilateralService}
|
|
|
</if>
|
|
|
- <if test="progressTid != null and progressTid != ''">
|
|
|
+ <if test="progressTid != null">
|
|
|
and progress_tid = #{progressTid}
|
|
|
</if>
|
|
|
</where>
|