查询 提现 次数统计 bug

This commit is contained in:
GYJ 2024-12-28 18:17:59 +08:00
parent 3b5c8f0af4
commit f95affc036
1 changed files with 1 additions and 1 deletions

View File

@ -177,7 +177,7 @@
</select>
<select id="selectTodayCashCount" resultType="java.lang.Integer">
select count(*) from cash_out where create_at > #{time} and user_id=#{userId} and state=#{state};
select count(*) from cash_out where create_at > #{time} and user_id=#{userId} and state=#{state} and withdraw_type=1;
</select>