|
@@ -17,6 +17,7 @@
|
|
<result column="income_" property="income" />
|
|
<result column="income_" property="income" />
|
|
<result column="sub_refund_amount_" property="subRefundAmount" />
|
|
<result column="sub_refund_amount_" property="subRefundAmount" />
|
|
<result column="refund_flag_" property="refundFlag" />
|
|
<result column="refund_flag_" property="refundFlag" />
|
|
|
|
+ <result column="memo_" property="memo" />
|
|
<result column="create_time_" property="createTime" />
|
|
<result column="create_time_" property="createTime" />
|
|
<result column="update_time_" property="updateTime" />
|
|
<result column="update_time_" property="updateTime" />
|
|
</resultMap>
|
|
</resultMap>
|
|
@@ -27,6 +28,9 @@
|
|
<if test="bean.orderNos != null and bean.orderNos != ''">
|
|
<if test="bean.orderNos != null and bean.orderNos != ''">
|
|
order_nos_ = #{bean.orderNos},
|
|
order_nos_ = #{bean.orderNos},
|
|
</if>
|
|
</if>
|
|
|
|
+ <if test="bean.memo != null and bean.memo != ''">
|
|
|
|
+ memo_ = #{bean.memo},
|
|
|
|
+ </if>
|
|
<if test="bean.subRefundAmount != null">
|
|
<if test="bean.subRefundAmount != null">
|
|
sub_refund_amount_ = #{bean.subRefundAmount},
|
|
sub_refund_amount_ = #{bean.subRefundAmount},
|
|
</if>
|
|
</if>
|
|
@@ -39,7 +43,6 @@
|
|
<if test="bean.refundFlag != null">
|
|
<if test="bean.refundFlag != null">
|
|
refund_flag_ = #{bean.refundFlag},
|
|
refund_flag_ = #{bean.refundFlag},
|
|
</if>
|
|
</if>
|
|
- update_time_ = #{bean.updateTime}
|
|
|
|
</set> WHERE id_ = #{bean.id}
|
|
</set> WHERE id_ = #{bean.id}
|
|
</foreach>
|
|
</foreach>
|
|
</update>
|
|
</update>
|