hjl
2024-06-18 aaa3384609da2dfb7d6788a2a2b3d92a2bff0813
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package com.ruoyi.user.vo;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * @author HJL
 * @version 1.0
 * @since 2024-06-11 9:22
 */
@Data
public class WithdrawMoneyVO {
 
    @ApiModelProperty("提现金额总计")
    private BigDecimal total;
 
    @ApiModelProperty("已提现金额")
    private BigDecimal withdraw;
 
    @ApiModelProperty("未提现金额")
    private BigDecimal undelivered;
 
    public WithdrawMoneyVO(BigDecimal total, BigDecimal withdraw, BigDecimal undelivered) {
        this.total = total;
        this.withdraw = withdraw;
        this.undelivered = undelivered;
    }
}