puzhibing
2023-10-31 32cafa15d3d4aa99a67102914a1b31e8f080c03f
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
package com.ruoyi.member.domain.vo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.common.core.annotation.Excel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * @author jqs34
 * @ClassName MgtMemberPageVo
 * @description: TODO
 * @date 2023年05月26日
 * @version: 1.0
 */
@Data
public class MgtMemberPageVo {
 
    @ApiModelProperty(value = "会员id")
    private String memberId;
 
    @ApiModelProperty(value = "用户id")
    @Excel(name = "用户id", width = 30, sort = 1)
    private Long userId;
 
    @ApiModelProperty(value = "会员编号")
    @Excel(name = "会员编号", width = 30)
    private String memberNo;
 
    @ApiModelProperty(value = "用户姓名")
    @Excel(name = "用户姓名", width = 30, sort = 3)
    private String realName;
 
    @ApiModelProperty(value = "用户昵称")
    @Excel(name = "用户昵称", width = 30, sort = 2)
    private String nickName;
 
    @ApiModelProperty(value = "用户手机")
    @Excel(name = "用户手机", width = 30, sort = 4)
    private String mobile;
 
    @ApiModelProperty(value = "用户性别")
    @Excel(name = "用户性别", width = 30, sort = 5)
    private String gender;
 
    @ApiModelProperty(value = "用户年龄")
    @Excel(name = "用户年龄", width = 30, sort = 6)
    private Integer age;
 
    @ApiModelProperty(value = "活跃度")
    @Excel(name = "活跃度", width = 30, sort = 7)
    private String activeness;
 
    @ApiModelProperty(value = "用户标签 多个,隔开")
    @Excel(name = "用户标签", width = 30, sort = 8)
    private String memberTags;
 
    @ApiModelProperty(value = "所属地区")
    @Excel(name = "所属地区", width = 30, sort = 9)
    private String belongDistrict;
 
    @ApiModelProperty(value = "是否成为会员")
    @Excel(name = "是否成为会员", width = 30, sort = 10)
    private String memberFlag;
 
    @ApiModelProperty(value = "注册时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @Excel(name = "注册时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss", sort = 11)
    private Date createTime;
 
    @ApiModelProperty(value = "最近消费时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @Excel(name = "最近消费时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss", sort = 12)
    private Date lastPayTime;
 
    @ApiModelProperty(value = "客户类型")
    @Excel(name = "客户类型", width = 30, sort = 13)
    private String goodsType;
 
    @ApiModelProperty(value = "关联商户id")
    @Excel(name = "关联商户名称", width = 30, sort = 14)
    private Long relationShopId;
 
    @ApiModelProperty(value = "关联商户名称")
    @Excel(name = "关联商户名称", width = 30, sort = 14)
    private String relationShopName;
 
    @ApiModelProperty(value = "积分")
    @Excel(name = "积分", width = 30, sort = 15)
    private Integer integral;
 
    @ApiModelProperty(value = "推荐人")
    @Excel(name = "推荐人", width = 30, sort = 16)
    private String referrer;
 
    @ApiModelProperty(value = "会员来源")
    @Excel(name = "会员来源", width = 30, sort = 17)
    private String memberFrom;
 
    @ApiModelProperty(value = "消费总金额")
    @Excel(name = "消费总金额", width = 30, sort = 18)
    private BigDecimal totalPayMoney;
 
    @ApiModelProperty(value = "活动参与次数")
    @Excel(name = "活动参与次数", width = 30, sort = 19)
    private Integer activityTotal;
 
    @ApiModelProperty(value = "头像")
    private String head;
 
    @ApiModelProperty(value = "冻结标记 1冻结 0解冻")
    private Integer frozenFlag;
}