Compare commits

..

No commits in common. "101bbf11d3a24ea6bb0e0a306b404fb78c665501" and "1c217b05ab651be4e660e3ba32aae7eae288dc7d" have entirely different histories.

1 changed files with 5 additions and 1 deletions

View File

@ -620,7 +620,9 @@
</trim>
<trim prefix="pay_end_date =case" suffix="end,">
<foreach collection="collection" item="item" index="index">
when id=#{item.id} then #{item.payEndDate}
<if test="item.payEndDate!=null">
when id=#{item.id} then #{item.payEndDate}
</if>
</foreach>
</trim>
<trim prefix="update_time =case" suffix="end,">
@ -648,7 +650,9 @@
<if test="item.payStartDate != null">
pay_start_date=#{item.payStartDate},
</if>
<if test="item.payEndDate != null">
pay_end_date=#{item.payEndDate},
</if>
</set>
WHERE id = #{item.id} AND delete_type = 0