jiangqs
2023-06-19 f0acb97e91f456c9b402977416e73951b708a157
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
package com.ruoyi.member.domain.vo;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @ClassName MgtTotalMemberTotalVo
 * @Description TODO
 * @Author jqs
 * @Date 2023/6/19 15:06
 * @Version 1.0
 */
@Data
public class MgtTotalMemberTotalVo {
 
    @ApiModelProperty(value = "总会员")
    private Integer memberTotal;
 
    @ApiModelProperty(value = "线上来源")
    private Integer onlineTotal;
 
    @ApiModelProperty(value = "线下来源")
    private Integer offlineTotal;
 
    @ApiModelProperty(value = "转介绍")
    private Integer introduceTotal;
 
    @ApiModelProperty(value = "周期会员")
    private Integer cycleTotal;
 
    @ApiModelProperty(value = "体验会员")
    private Integer experienceTotal;
 
    @ApiModelProperty(value = "服务会员")
    private Integer serviceTotal;
 
    @ApiModelProperty(value = "男人")
    private Integer manTotal;
 
    @ApiModelProperty(value = "女人")
    private Integer womenTotal;
 
    @ApiModelProperty(value = "会员年龄key")
    private String[] ageKey;
 
    @ApiModelProperty(value = "会员年龄value")
    private Integer[] ageValue;
 
    @ApiModelProperty(value = "会员年龄key")
    private String[] nurseKey;
 
    @ApiModelProperty(value = "会员年龄value")
    private Integer[] nurseValue;
 
    @ApiModelProperty(value = "商品类型key")
    private String[] goodsTypeKey;
 
    @ApiModelProperty(value = "商品类型value")
    private Integer[] goodsTypeValue;
 
    @ApiModelProperty(value = "活跃度key")
    private String[] activenessKey;
 
    @ApiModelProperty(value = "活跃度value")
    private Integer[] activenessValue;
 
    @ApiModelProperty(value = "消费排行key")
    private String[] orderRankKey;
 
    @ApiModelProperty(value = "消费排行value")
    private Integer[] orderRankValue;
 
    @ApiModelProperty(value = "来源排行key")
    private String[] customerSourceKey;
 
    @ApiModelProperty(value = "来源排行value")
    private Integer[] customerSourceValue;
}