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----------
|
*/
|