Helius
2021-09-28 ffcbfda9232da7f76071f6ba781633f7a6e1e284
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
package cc.mrbird.febs.mall.entity;
 
import cc.mrbird.febs.common.controller.BaseController;
import cc.mrbird.febs.common.entity.BaseEntity;
import cc.mrbird.febs.common.entity.BaseEntity;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
/**
 * @author wzy
 * @date 2021-09-16
 **/
@Data
@TableName("mall_member")
public class MallMember extends BaseEntity {
 
    /**
     * 姓名
     */
    private String name;
 
    /**
     * 手机号
     */
    private String phone;
 
    /**
     * 邮箱
     */
    private String email;
 
    /**
     * 密码
     */
    private String password;
 
    /**
     * 资金密码
     */
    private String tradePassword;
 
    /**
     * 头像
     */
    private String avatar;
 
    /**
     * 性别
     */
    private String sex;
 
    /**
     * 邀请码
     */
    private String inviteId;
 
    /**
     * 父级邀请码
     */
    private String referrerId;
 
    /**
     * 邀请码链
     */
    private String referrerIds;
 
    /**
     * 代理级别
     */
    private String level;
 
    /**
     * 账户状态;1-正常 2-禁用
     */
    private Integer accountStatus;
    /**
     * 启用
     */
    public static final Integer ACCOUNT_STATUS_ENABLE = 1;
    /**
     * 禁用
     */
    public static final Integer ACCOUNT_STATUS_DISABLED = 2;
 
    /**
     * 账号类型
     */
    private Integer accountType;
 
    /**
     * 正常账号
     */
    public static final Integer ACCOUNT_TYPE_NORMAL = 1;
    /**
     * 测试账号
     */
    public static final Integer ACCOUNT_TYPE_TEST = 2;
    @TableField(exist = false)
    private String account;
 
    private String bindPhone;
 
}