forked from gzzfw/backEnd/gz-dyh

liyj
2024-09-10 47fa44a60a9dffee1e122a72b61badc36726b300
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
package cn.huge.module.cust.constant;
 
/**
 * @title: 用户相关常量类
 * @description: 用户相关常量
 * @company: hugeinfo
 * @author: liyj
 * @time: 2021-11-05 16:51:48
 * @version: 1.0.0
 */
public class UserBaseConsts {
    /**
     * 授权凭证明文
     */
    public static final String MR_CIPHER = "byzfw2023!";
 
    /**
     * 用户状态,1:有效(默认),2:停用,3:离职
     */
    public static final int USER_STATUS_1 = 1;
    public static final int USER_STATUS_2 = 2;
    public static final int USER_STATUS_3 = 3;
 
    /**
     * 帐号类型,1:平台web端,2:平台小程序
     */
    public static final int ACC_TYPE_1 = 1;
    public static final int ACC_TYPE_2 = 2;
 
    /**
     * 加入方式,1:系统创建(默认),2:自主申请
     */
    public static final int JOIN_WAY_1 = 1;
    public static final int JOIN_WAY_2 = 2;
 
    /**
     * 实名认证状态,0:未认证, 1:已认证
     */
    public static final int REAL_STATUS_0 = 0;
    public static final int REAL_STATUS_1 = 1;
 
    /**
     * 角色类型,1:自定义角色,2:基础角色
     */
    public static final int ROLE_TYPE_1 = 1;
    public static final int ROLE_TYPE_2 = 2;
 
    /**
     * 配岗类型,1:主岗,2:兼岗
     */
    public static final int MATCH_TYPE_1 = 1;
    public static final int MATCH_TYPE_2 = 2;
 
    /**
     * 是否可以找他调(小程序),0:否,1:是
     */
    public static final int FIND_STATUS_0 = 0;
    public static final int FIND_STATUS_1 = 1;
 
    /**
     * 是否参与自动调度,0:否,1:是
     */
    public static final int DISP_STATUS_0 = 0;
    public static final int DISP_STATUS_2 = 1;
 
    /**
     * ========================================== 单位部门 ==========================================
     */
 
    /**
     * 组织级别,0:政法委,1:市级,2:区级,3:镇街级,4:村居级
     */
    public static final int UNIT_GRADE_0 = 0;
    public static final int UNIT_GRADE_1 = 1;
    public static final int UNIT_GRADE_2 = 2;
    public static final int UNIT_GRADE_3 = 3;
    public static final int UNIT_GRADE_4 = 4;
 
    /**
     * 组织类型,0:政法委,1:综治中心,2:直属部门,3:法院,4:行专业调委会,5:企事业调委会,6:演示测试,9:其他
     */
    public static final int UNIT_TYPE_0 = 0;
    public static final int UNIT_TYPE_1 = 1;
    public static final int UNIT_TYPE_2 = 2;
    public static final int UNIT_TYPE_3 = 3;
    public static final int UNIT_TYPE_4 = 4;
    public static final int UNIT_TYPE_5 = 5;
    public static final int UNIT_TYPE_6 = 6;
    public static final int UNIT_TYPE_9 = 9;
}
/**
 * -------------------_ooOoo_-------------------
 * ------------------o8888888o------------------
 * ------------------88" . "88------------------
 * ------------------(| -_- |)------------------
 * ------------------O\  =  /O------------------
 * ---------------____/`---'\____---------------
 * -------------.'  \\|     |//  `.-------------
 * ------------/  \\|||  :  |||//  \------------
 * -----------/  _||||| -:- |||||-  \-----------
 * -----------|   | \\\  -  /// |   |-----------
 * -----------| \_|  ''\---/''  |   |-----------
 * -----------\  .-\__  `-`  ___/-. /-----------
 * ---------___`. .'  /--.--\  `. . __----------
 * ------."" '<  `.___\_<|>_/___.'  >'"".-------
 * -----| | :  `- \`.;`\ _ /`;.`/ - ` : | |-----
 * -----\  \ `-.   \_ __\ /__ _/   .-` /  /-----
 * ======`-.____`-.___\_____/___.-`____.-'======
 * -------------------`=---='
 * ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 * ---------佛祖保佑---hugeinfo---永无BUG----------
 */