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; /** * ========================================== 单位部门 ========================================== */ /** * 组织级别,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; /** * 组织类型,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---------- */