KKSU
2024-08-22 7a372033d44ba48383d9d1bc97e5d583b26a266f
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
116
117
118
119
120
121
122
123
package cc.mrbird.febs.mall.vo;
 
import io.swagger.annotations.ApiModel;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
 
@Data
@ApiModel(value = "AdminMallMemberVo", description = "信息返回类")
public class AdminMallMemberVo {
 
    private Long id;
 
    private Date createdTime;
 
    /**
     * 登录账号
     */
    private String accountLogin;
    /**
     * 姓名
     */
    private String name;
 
    /**
     * 手机号
     */
    private String phone;
 
    /**
     * 邮箱
     */
    private String email;
 
    /**
     * 邀请码
     */
    private String inviteId;
 
    /**
     * 父级邀请码
     */
    private String referrerId;
 
    /**
     * 邀请码链
     */
    private String referrerIds;
 
    /**
     * 代理级别
     */
    private String level;
 
    /**
     * 账户状态;1-正常 2-禁用
     */
    private Integer accountStatus;
    /**
     * 账号类型
     */
    private Integer accountType;
 
    private String account;
 
    private String bindPhone;
 
    private String referrerName;
 
    private String query;
 
    private String levelName;
 
    /**
     * 董事
     */
    private Integer director;
 
    /**
     * 店长
     */
    private Integer storeMaster;
 
    /**
     * 联创  1-是 2-否
     */
    private Integer creater;
 
    /**
     * 合伙人 1-是 2-否
     */
    private Integer partner;
 
    //内转标识 1:开启 2:关闭
    private Integer insideWith;
 
    //提现开关 1:开启 2:关闭
    private Integer outsideWith;
 
    private String userKey;
 
    private Integer isFrozen;//是否冻结 1:是 0 :否
 
    private BigDecimal balance;
    private BigDecimal staticNft;
    private BigDecimal trendsNft;
    private BigDecimal frozenNft;
    private BigDecimal fcmCntAva;
    private BigDecimal fcmCntFrozen;
    private BigDecimal tokenAva;
    private BigDecimal tokenFrozen;
    private BigDecimal totalPerk;
 
 
 
    private BigDecimal chargeAmount;
 
    private BigDecimal amountBuy;
 
    private BigDecimal amountPerk;
    private BigDecimal withDrawAmount;
}