广州市综治平台后端
xusd
2025-06-07 36306491396230522fa20585c2621a7fc899849a
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
124
125
126
127
128
129
130
131
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_BY = "byzfw20232222!";
    public static final String MR_CIPHER_GZ = "byzfw20232222!";
 
    /**
     * 用户状态,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:自主申请,3:网格化系统同步,4:广州市综治中心系统一期同步
     */
    public static final int JOIN_WAY_1 = 1;
    public static final int JOIN_WAY_2 = 2;
    public static final int JOIN_WAY_3 = 3;
    public static final int JOIN_WAY_4 = 4;
 
    /**
     * 实名认证状态,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_1 = 1;
 
    /**
     * ========================================== 单位部门 ==========================================
     */
 
    /**
     * 组织级别,1:市级,2:区级,3:镇街级,4:村居级
     */
    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;
 
    /**
     * 组织类型,
     * 调解组织类型(101:综治中心,102:直属部门,103:村居社区,104:法院,105:司法局,106:司法所,107:行专业调委会,108:企事业调委会,199:演示测试),
     * 行政组织类型(201:政法委,202:其他)
     */
    public static final int UNIT_TYPE_101 = 101;
    public static final int UNIT_TYPE_102 = 102;
    public static final int UNIT_TYPE_103 = 103;
    public static final int UNIT_TYPE_104 = 104;
    public static final int UNIT_TYPE_105 = 105;
    public static final int UNIT_TYPE_106 = 106;
    public static final int UNIT_TYPE_107 = 107;
    public static final int UNIT_TYPE_108 = 108;
    public static final int UNIT_TYPE_199 = 199;
    public static final int UNIT_TYPE_201 = 201;
    public static final int UNIT_TYPE_202 = 202;
 
    /**
     * 是否是法院,0:否,1:是
     */
    public static final int COURT_STATUS_0 = 0;
    public static final int COURT_STATUS_1 = 1;
 
    /**
     * 组织职能,1:调解组织,2:行政组织
     */
    public static final int UNIT_FUN_1 = 1;
    public static final int UNIT_FUN_2 = 2;
}
/**
 * -------------------_ooOoo_-------------------
 * ------------------o8888888o------------------
 * ------------------88" . "88------------------
 * ------------------(| -_- |)------------------
 * ------------------O\  =  /O------------------
 * ---------------____/`---'\____---------------
 * -------------.'  \\|     |//  `.-------------
 * ------------/  \\|||  :  |||//  \------------
 * -----------/  _||||| -:- |||||-  \-----------
 * -----------|   | \\\  -  /// |   |-----------
 * -----------| \_|  ''\---/''  |   |-----------
 * -----------\  .-\__  `-`  ___/-. /-----------
 * ---------___`. .'  /--.--\  `. . __----------
 * ------."" '<  `.___\_<|>_/___.'  >'"".-------
 * -----| | :  `- \`.;`\ _ /`;.`/ - ` : | |-----
 * -----\  \ `-.   \_ __\ /__ _/   .-` /  /-----
 * ======`-.____`-.___\_____/___.-`____.-'======
 * -------------------`=---='
 * ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 * ---------佛祖保佑---hugeinfo---永无BUG----------
 */