update 增加昨日收入金额,和累计提现金额

This commit is contained in:
2023-10-17 16:07:54 +08:00
parent 7cbabc5e10
commit a90584443d
5 changed files with 35 additions and 5 deletions

View File

@@ -3,6 +3,8 @@ package com.jsowell.pile.vo.web;
import lombok.Getter;
import lombok.Setter;
import java.math.BigDecimal;
/**
* 提现记录VO
*/
@@ -22,5 +24,5 @@ public class WithdrawInfoVO {
private String applicationTime;
// 提现金额
private String cashAmt;
private BigDecimal cashAmt;
}