xiaoyong931011
2023-04-13 daec5502ddb0e5b50c7de74a78688ad30166fc48
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
package cc.mrbird.febs.mall.vo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
 
@Data
@ApiModel(value = "MallMemberVo", description = "商城用户信息返回类")
public class MallMemberVo {
 
    @ApiModelProperty(value = "id")
    private Long id;
 
    @ApiModelProperty(value = "昵称")
    private String name;
 
    @ApiModelProperty(value = "手机号")
    private String phone;
 
    @ApiModelProperty(value = "邮箱")
    private String email;
 
    @ApiModelProperty(value = "性别")
    private String sex;
 
    @ApiModelProperty(value = "邀请码")
    private String inviteId;
 
    @ApiModelProperty(value = "头像")
    private String avatar;
 
    @ApiModelProperty(value = "余额")
    private BigDecimal balance;
 
    @ApiModelProperty(value = "代理等级")
    private String levelName;
 
    @ApiModelProperty(value = "推荐人昵称")
    private String referrerName;
 
    private String level;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date createdTime;
 
    /**
     * 账户状态;1-正常 2-禁用
     */
    private Integer accountStatus;
    public static final int ACCOUNTSTATUS_Y = 1;
    public static final int ACCOUNTSTATUS_N = 2;
 
    @ApiModelProperty(value = "是否设置收款方式", example = "1是2否")
    private Integer hasPayment = 2;
 
    @ApiModelProperty(value = "是否设置交易密码", example = "1是2否")
    private Integer hasTradePwd = 2;
 
    @ApiModelProperty(value = "绑定手机号")
    private String bindPhone;
 
    @ApiModelProperty(value = "累计消费")
    private BigDecimal totalCost;
 
    @ApiModelProperty(value = "积分")
    private BigDecimal score;
 
    @ApiModelProperty(value = "积分价格")
    private BigDecimal poolScorePrice;
 
    @ApiModelProperty(value = "抽奖积分")
    private BigDecimal prizeScore;
 
    /**
     * 董事
     */
    @ApiModelProperty(value = "是否为董事 1-是 2-否")
    private Integer director;
 
    /**
     * 合伙人
     */
    @ApiModelProperty(value = "是否为合伙人 1-是 2-否")
    private Integer partner;
 
    /**
     * 店长
     */
    @ApiModelProperty(value = "是否店长 1-是 2-否")
    private Integer storeMaster;
 
}