mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-05-01 08:30:05 +08:00
修复提现状态bug
This commit is contained in:
@@ -754,7 +754,7 @@
|
||||
|
||||
<update id="updateStatus">
|
||||
update clearing_bill_info
|
||||
set bill_status = #{billStatus,jdbcType=VARCHAR}
|
||||
set bill_status = #{billStatus,jdbcType=VARCHAR}, withdraw_code = #{withdrawCode,jdbcType=VARCHAR}
|
||||
where id in
|
||||
<foreach close=")" collection="clearingBillIds" item="item" open="(" separator=",">
|
||||
#{item,jdbcType=INTEGER}
|
||||
@@ -782,4 +782,12 @@
|
||||
order by
|
||||
t1.trade_date desc
|
||||
</select>
|
||||
|
||||
<select id="selectByWithdrawCode" resultMap="BaseResultMap">
|
||||
select
|
||||
<include refid="Base_Column_List" />
|
||||
from clearing_bill_info
|
||||
where del_flag = '0'
|
||||
and withdraw_code = #{withdrawCode,jdbcType=VARCHAR}
|
||||
</select>
|
||||
</mapper>
|
||||
Reference in New Issue
Block a user