Authored by tanling

coupon中的productLimitValue不更新到库

... ... @@ -69,9 +69,6 @@
use_limit_value,
</if>
product_limit_type,
<if test="param.productLimitType != 1">
product_limit_value,
</if>
start_time,end_time,status,create_time,pid,remark,skup_forbid_type)
values(#{param.couponToken},#{param.couponName},#{param.couponAmount},#{param.couponType}
,#{param.couponNum},#{param.useNum},#{param.sendNum},#{param.useLimitType},
... ... @@ -79,9 +76,6 @@
#{param.useLimitValue},
</if>
#{param.productLimitType},
<if test="param.productLimitType != 1">
#{param.productLimitValue},
</if>
#{param.startTime},#{param.endTime},#{param.status},#{param.createTime},#{param.pid},#{param.remark},#{param.skupForbidType})
</insert>
<update id="updateByCouponSaveUpdateReq">
... ... @@ -117,9 +111,6 @@
<if test="param.productLimitType != null">
product_limit_type=#{param.productLimitType},
</if>
<if test="param.productLimitValue != null">
product_limit_value=#{param.productLimitValue},
</if>
<if test="param.startTime != null">
start_time=#{param.startTime},
</if>
... ...