广州市综治平台后端
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
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----------
 */