无关风月
2024-11-12 3818974122e7b80e0fe04fd5709a853bac831caa
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
37
38
39
40
41
42
43
44
45
46
47
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;
 
}