修复提现状态bug

This commit is contained in:
2023-10-20 16:34:21 +08:00
parent 6ab504dba2
commit be44562253
6 changed files with 40 additions and 9 deletions

View File

@@ -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>