KKSU
2025-02-18 0140571d040178c6a1c4c6f66f8df0dcb46ab5ac
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
package cc.mrbird.febs.user.contant;
 
public class MemberConstant {
    //添加途径 1-正常注册 0-后台添加
    public static final Integer ADD_TYPE_NORMAL = 1;
    public static final Integer ADD_TYPE_BACK = 0;
 
    //性别 0-女 1-男性 2-未填写
    public static final Integer FEMALE = 0;
    public static final Integer MALE = 1;
    public static final Integer UNKNOWN = 2;
 
 
 
    /**
     * 账户状态;1-正常 0-禁用
     */
    public static final Integer ACCOUNT_STATUS_NORMAL = 1;
    public static final Integer ACCOUNT_STATUS_TEST = 0;
 
 
    /**
     * 账户类型;1-正常用户 0-测试账户
     */
    public static final Integer ACCOUNT_TYPE_NORMAL = 1;
    public static final Integer ACCOUNT_TYPE_TEST = 0;
 
 
    /**
     * 是否是主账号 1-是 0-否
     */
    public static final Integer DIRECTER_YES = 1;
    public static final Integer DIRECTER_NO = 0;
 
 
}