修改可提金额判断

This commit is contained in:
韩鹏辉
2023-08-26 15:46:14 +08:00
parent 01e435f575
commit 8e0b1627b4
2 changed files with 46 additions and 29 deletions

View File

@@ -534,7 +534,7 @@ public class UserAppController {
totalShareMoneyToday = userAccountFlowMapper.selectSumByUserId(userId, DateUtils.getDayBegin(), DateUtils.getDayEnd());
// 可提现分润
allowCashMoney = userAccountByUserId.getBalance();
allowCashMoney = userAccountByUserId.getBalance().subtract(userAccountByUserId.getFreezeBalance());
//审核中的提现金额
examineMoney = userAccountByUserId.getFreezeBalance();