package com.xinquan.system.domain.export;
|
|
import cn.afterturn.easypoi.excel.annotation.Excel;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.Map;
|
|
/**
|
* @author mitao
|
* @date 2024/8/21
|
*/
|
@Data
|
@ApiModel(value = "首页统计返回VO")
|
public class HomeExport implements Serializable {
|
private static final long serialVersionUID = -3850851853092651572L;
|
@Excel(name = "用户总数")
|
private String userCount;
|
@Excel(name = "非会员数")
|
private String noVip;
|
@Excel(name = "月卡会员数")
|
private String vipMonth;
|
@Excel(name = "季卡会员数")
|
private String vipQuarter;
|
@Excel(name = "年卡会员数")
|
private String vipYear;
|
@Excel(name = "课程总数")
|
private String courseCount;
|
@Excel(name = "免费课程数")
|
private String courseFree;
|
@Excel(name = "会员课程数")
|
private String courseVip;
|
|
@Excel(name = "单独付费课程数")
|
private String coursePay;
|
@Excel(name = "疗愈音频总数")
|
private String meditationCount;
|
@Excel(name = "免费音频数")
|
private String meditationFree;
|
@Excel(name = "会员音频数")
|
private String meditationVip;
|
@Excel(name = "单独付费音频数")
|
private String meditationPay;
|
|
}
|