Compare commits
No commits in common. "101bbf11d3a24ea6bb0e0a306b404fb78c665501" and "1c217b05ab651be4e660e3ba32aae7eae288dc7d" have entirely different histories.
101bbf11d3
...
1c217b05ab
|
|
@ -620,7 +620,9 @@
|
||||||
</trim>
|
</trim>
|
||||||
<trim prefix="pay_end_date =case" suffix="end,">
|
<trim prefix="pay_end_date =case" suffix="end,">
|
||||||
<foreach collection="collection" item="item" index="index">
|
<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>
|
</foreach>
|
||||||
</trim>
|
</trim>
|
||||||
<trim prefix="update_time =case" suffix="end,">
|
<trim prefix="update_time =case" suffix="end,">
|
||||||
|
|
@ -648,7 +650,9 @@
|
||||||
<if test="item.payStartDate != null">
|
<if test="item.payStartDate != null">
|
||||||
pay_start_date=#{item.payStartDate},
|
pay_start_date=#{item.payStartDate},
|
||||||
</if>
|
</if>
|
||||||
|
<if test="item.payEndDate != null">
|
||||||
pay_end_date=#{item.payEndDate},
|
pay_end_date=#{item.payEndDate},
|
||||||
|
</if>
|
||||||
</set>
|
</set>
|
||||||
WHERE id = #{item.id} AND delete_type = 0
|
WHERE id = #{item.id} AND delete_type = 0
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue