package cn.huge.module.thirdByRmtj.consts; /** * @title: 第三方对接-人民调解系统相关常量类 * @description: 第三方对接-人民调解系统相关常量 * @company: hugeinfo * @author: liyj * @time: 2021-11-05 16:51:48 * @version: 1.0.0 */ public class RmtjConsts { /** * 进度,1:初审中,2:终审中,3:转入中,4:已转入,9:审核拒绝 */ public static int APPLY_PROCESS_1 = 1; public static int APPLY_PROCESS_2 = 2; public static int APPLY_PROCESS_3 = 3; public static int APPLY_PROCESS_4 = 4; public static int APPLY_PROCESS_9 = 9; /** * 初审结果,0:待审核,1:同意,2:拒绝 */ public static int FIRST_AUDIT_0 = 0; public static int FIRST_AUDIT_1 = 1; public static int FIRST_AUDIT_2 = 2; /** * 终审结果,0:待审核,1:同意,2:拒绝 */ public static int END_AUDIT_0 = 0; public static int END_AUDIT_1 = 1; public static int END_AUDIT_2 = 2; /** * 审核节点,1:初审,2:终审,3:转入人民调解系统 */ public static int AUDIT_NODE_1 = 1; public static int AUDIT_NODE_2 = 2; public static int AUDIT_NODE_3 = 3; /** * 审核结果,1:同意,2:拒绝 */ public static int AUDIT_RESULT_1 = 1; public static int AUDIT_RESULT_2 = 2; /** * 转入人民调解系统状态,1:未转入,2:转入中,3:已转入,4:转入失败 */ public static int RMTJ_STATUS_1 = 1; public static int RMTJ_STATUS_2 = 2; public static int RMTJ_STATUS_3 = 3; public static int RMTJ_STATUS_4 = 4; /** * 账号类型,1:调解员,2:调解组织 */ public static String ACC_TYPE_1 = "1"; public static String ACC_TYPE_2 = "2"; /** * 配置类型,rmtj_time:转入时间配置 */ public static String CONFIG_KIND_1 = "rmtj_time"; /** * 配置编码 */ public static String CONFIG_CODE_1 = "101"; } /** * -------------------_ooOoo_------------------- * ------------------o8888888o------------------ * ------------------88" . "88------------------ * ------------------(| -_- |)------------------ * ------------------O\ = /O------------------ * ---------------____/`---'\____--------------- * -------------.' \\| |// `.------------- * ------------/ \\||| : |||// \------------ * -----------/ _||||| -:- |||||- \----------- * -----------| | \\\ - /// | |----------- * -----------| \_| ''\---/'' | |----------- * -----------\ .-\__ `-` ___/-. /----------- * ---------___`. .' /--.--\ `. . __---------- * ------."" '< `.___\_<|>_/___.' >'"".------- * -----| | : `- \`.;`\ _ /`;.`/ - ` : | |----- * -----\ \ `-. \_ __\ /__ _/ .-` / /----- * ======`-.____`-.___\_____/___.-`____.-'====== * -------------------`=---=' * ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ * ---------佛祖保佑---hugeinfo---永无BUG---------- */