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
31
32
33
34
35
36
package com.ruoyi.admin.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * @author HJL
 * @version 1.0
 * @since 2024-05-31 9:34
 */
@Data
@ApiModel(value = "userDataCountVO对象", description = "首页用户数据统计返回类")
public class UserDataCountVO {
 
    @ApiModelProperty("用户总量")
    private Integer userTotalNumber;
 
    @ApiModelProperty("用户增长数")
    private Long increaseNumber;
 
    @ApiModelProperty("用户总交易额")
    private BigDecimal totalMoney;
 
    @ApiModelProperty("用户提现总额")
    private BigDecimal withdrawalTotalMoney;
 
    public UserDataCountVO(Integer userTotalNumber, Long increaseNumber, BigDecimal totalMoney, BigDecimal withdrawalTotalMoney) {
        this.userTotalNumber = userTotalNumber;
        this.increaseNumber = increaseNumber;
        this.totalMoney = totalMoney;
        this.withdrawalTotalMoney = withdrawalTotalMoney;
    }
}