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;
|
}
|
}
|