dividendProportion默认为0不保存

This commit is contained in:
邱贞招 2024-11-01 09:33:06 +08:00
parent 5e453dfae6
commit 3767ec6b65

View File

@ -234,7 +234,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="updateBy != null and updateBy != ''">update_by = #{updateBy},</if>
<if test="remark != null">remark = #{remark},</if>
<if test="areaId != null">area_id = #{areaId},</if>
<if test="dividendProportion != null">dividend_proportion = #{dividendProportion},</if>
<if test="dividendProportion != null and dividendProportion != 0">dividend_proportion = #{dividendProportion},</if>
<if test="dividendItem != null">dividend_item = #{dividendItem},</if>
<if test="appUserId != null">app_user_id = #{appUserId},</if>
<if test="cooperationTime != null">cooperation_time = #{cooperationTime},</if>