累计提现金额

This commit is contained in:
2023-09-22 15:54:26 +08:00
parent 6319856269
commit 145b1cd332
3 changed files with 14 additions and 8 deletions

View File

@@ -525,6 +525,9 @@ public class AdapayService {
// 昨日收入
vo.setYesterdayRevenue(BigDecimal.ZERO);
// 累计提现金额
vo.setTotalWithdraw(BigDecimal.ZERO);
return vo;
}

View File

@@ -33,4 +33,7 @@ public class AdapayAccountBalanceVO {
// 昨日收入
private BigDecimal yesterdayRevenue;
// 累计提现金额
private BigDecimal totalWithdraw;
}