wang-hao-jie
2022-01-07 0f2202dfcea3309c1b0e7515f6db5fbdc83d51d1
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
package cn.exrick.xboot.core.common.constant;
 
/**
 * 常量
 * @author Exrickx
 */
public interface MemberConstant {
 
    /**
     * 会员默认头像
     */
    String MEMBER_DEFAULT_AVATAR = "https://ooo.0o0.ooo/2020/04/18/NmF3IP4TOoVbLf5.png";
 
    /**
     * 默认角色权限
     */
    String MEMBER_PERMISSION = "MEMBER";
 
    /**
     * 会员正常状态
     */
    Integer MEMBER_STATUS_NORMAL = 0;
 
    /**
     * 会员禁用状态
     */
    Integer MEMBER_STATUS_LOCK = -1;
 
    /**
     * 普通会员
     */
    Integer MEMBER_TYPE_NORMAL = 0;
 
    /**
     * VIP
     */
    Integer MEMBER_TYPE_VIP = 1;
 
    /**
     * 普通会员
     */
    Integer MEMBER_VIP_NONE = 0;
 
    /**
     * VIP
     */
    Integer MEMBER_VIP_VALID = 1;
 
    /**
     * 未知
     */
    Integer MEMBER_VIP_INVALID = 2;
 
    /**
     * PC/H5
     */
    Integer MEMBER_PLATFORM_PC = 0;
 
    /**
     * 安卓
     */
    Integer MEMBER_PLATFORM_ANDROID = 1;
 
    /**
     * IOS
     */
    Integer MEMBER_PLATFORM_IOS = 2;
 
    /**
     * 微信小程序
     */
    Integer MEMBER_PLATFORM_WECHAT = 3;
 
    /**
     * 支付宝小程序
     */
    Integer MEMBER_PLATFORM_ALIPAY = 4;
 
    /**
     * QQ小程序
     */
    Integer MEMBER_PLATFORM_QQ = 5;
 
    /**
     * 字节小程序
     */
    Integer MEMBER_PLATFORM_BYTE = 6;
 
    /**
     * 百度小程序
     */
    Integer MEMBER_PLATFORM_BAIDU = 7;
}