|
@@ -37,31 +37,31 @@
|
|
|
UPDATE platform_cash_account_record
|
|
|
<set>
|
|
|
<if test="param.accountId">
|
|
|
- account_id_ = #{param.accountId}
|
|
|
+ account_id_ = #{param.accountId},
|
|
|
</if>
|
|
|
<if test="param.transAmount">
|
|
|
- trans_amount_ = #{param.transAmount}
|
|
|
+ trans_amount_ = #{param.transAmount},
|
|
|
</if>
|
|
|
<if test="param.memo">
|
|
|
- memo_ = #{param.memo}
|
|
|
+ memo_ = #{param.memo},
|
|
|
</if>
|
|
|
<if test="param.orderNo">
|
|
|
- order_no_ = #{param.orderNo}
|
|
|
+ order_no_ = #{param.orderNo},
|
|
|
</if>
|
|
|
<if test="param.bizId">
|
|
|
- biz_id_ = #{param.bizId}
|
|
|
+ biz_id_ = #{param.bizId},
|
|
|
</if>
|
|
|
<if test="param.inOrOut">
|
|
|
- in_or_out_ = #{param.inOrOut}
|
|
|
+ in_or_out_ = #{param.inOrOut},
|
|
|
</if>
|
|
|
<if test="param.bizType">
|
|
|
- biz_type_ = #{param.bizType}
|
|
|
+ biz_type_ = #{param.bizType},
|
|
|
</if>
|
|
|
<if test="param.postStatus">
|
|
|
- post_status_ = #{param.postStatus}
|
|
|
+ post_status_ = #{param.postStatus},
|
|
|
</if>
|
|
|
<if test="param.accountPeriodTime">
|
|
|
- account_period_time_ = #{param.accountPeriodTime}
|
|
|
+ account_period_time_ = #{param.accountPeriodTime},
|
|
|
</if>
|
|
|
update_time_ = NOW()
|
|
|
</set>
|