fix[litemall-db]: 手动mapper文件需设置订单退款相关字段

This commit is contained in:
Junling Bu
2019-12-17 00:14:33 +08:00
parent ef4083c1b8
commit 613d2dba20

View File

@@ -64,6 +64,18 @@
<if test="order.shipTime != null">
ship_time = #{order.shipTime,jdbcType=TIMESTAMP},
</if>
<if test="order.refundAmount != null">
refund_amount = #{order.refundAmount,jdbcType=DECIMAL},
</if>
<if test="order.refundType != null">
refund_type = #{order.refundType,jdbcType=VARCHAR},
</if>
<if test="order.refundContent != null">
refund_content = #{order.refundContent,jdbcType=VARCHAR},
</if>
<if test="order.refundTime != null">
refund_time = #{order.refundTime,jdbcType=TIMESTAMP},
</if>
<if test="order.confirmTime != null">
confirm_time = #{order.confirmTime,jdbcType=TIMESTAMP},
</if>