update 查询提现记录

This commit is contained in:
2024-01-05 15:26:22 +08:00
parent 65332f1ed4
commit 29adce0d00
8 changed files with 376 additions and 120 deletions

View File

@@ -565,4 +565,12 @@
where del_flag = '0'
and merchant_id = #{merchantId,jdbcType=VARCHAR}
</select>
<select id="queryTotalWithdraw" resultType="java.math.BigDecimal">
select
sum(withdraw_amt)
from clearing_withdraw_info
where del_flag = '0'
and merchant_id = #{merchantId,jdbcType=VARCHAR}
</select>
</mapper>