package com.ruoyi.account.vo;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
@Data
|
@ApiModel("用户统计详情")
|
public class UserStatisticsDetail {
|
|
/**
|
* 用户获得总积分
|
*/
|
@ApiModelProperty("用户获得总积分")
|
private Integer totalScore;
|
|
/**
|
* 消费积分总数
|
*/
|
@ApiModelProperty("消费积分总数")
|
private Integer consumeScore;
|
|
/**
|
* 返佣积分总数
|
*/
|
@ApiModelProperty("返佣积分总数")
|
private Integer rebateScore;
|
|
/**
|
* 拉新人积分总数
|
*/
|
@ApiModelProperty("拉新人积分总数")
|
private Integer inviteScore;
|
|
/**
|
* 注册积分总数
|
*/
|
@ApiModelProperty("注册积分总数")
|
private Integer registerScore;
|
|
/**
|
* 做工积分总数
|
*/
|
@ApiModelProperty("做工积分总数")
|
private Integer workScore;
|
|
/**
|
* 技师业绩积分总数
|
*/
|
@ApiModelProperty("技师业绩积分总数")
|
private Integer achievementScore;
|
|
/**
|
* 用户获得分佣总金额
|
*/
|
@ApiModelProperty("用户获得分佣总金额")
|
private BigDecimal totalRebate;
|
|
/**
|
* 充值金额
|
*/
|
@ApiModelProperty("充值金额")
|
private BigDecimal totalRecharge;
|
|
/**
|
* 已提现金额
|
*/
|
@ApiModelProperty("已提现金额")
|
private BigDecimal totalWithdraw;
|
|
/**
|
* 消费总金额
|
*/
|
@ApiModelProperty("消费总金额")
|
private BigDecimal shopAmount;
|
}
|