广州市综治平台后端
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
package cn.huge.module.constant;
 
/**
 * @title: 用户相关常量类
 * @description: 用户相关常量
 * @company: hugeinfo
 * @author: liyj
 * @time: 2021-11-05 16:51:48
 * @version: 1.0.0
 */
public class GZCaseTaskConsts {
 
    /**
     * 纠纷任务类型,1:承办,2:配合
     */
    public static final int CASE_TASK_TYPE_1 = 1;
    public static final int CASE_TASK_TYPE_2 = 2;
 
    /**
     * 任务候选执行者类型:1:所有人,2:上一步骤选择,3:上一步骤执行者,4:自定义指定(单位部门角色人组合)
     */
    public static final int CANDE_TYPE_1 = 1;
    public static final int CANDE_TYPE_2 = 2;
    public static final int CANDE_TYPE_3 = 3;
    public static final int CANDE_TYPE_4 = 4;
 
    /**
     * 任务已读状态,0:未读,1:已读
     */
    public static final int READ_STATUS_0 = 0;
    public static final int READ_STATUS_1 = 1;
 
    /**
     * 任务进度,1:进行中,2:已完成
     */
    public static final int TASK_STATUS_1 = 1;
    public static final int TASK_STATUS_2 = 2;
 
    /**
     * 处理结果,0:正常流转,1:审核通过,2:审核不通过,3:不予受理,4:回退,5:上报
     */
    public static final int HANDLE_RESULT_0 = 0;
    public static final int HANDLE_RESULT_1 = 1;
    public static final int HANDLE_RESULT_2 = 2;
    public static final int HANDLE_RESULT_3 = 3;
    public static final int HANDLE_RESULT_4 = 4;
    public static final int HANDLE_RESULT_5 = 5;
 
    /**
     * 配合状态,0:配合,1:回退,2:承办部门回退
     */
    public static final int ASSIST_STATUS_0 = 0;
    public static final int ASSIST_STATUS_1 = 1;
    public static final int ASSIST_STATUS_2 = 2;
 
    /**
     * 经办类型,1:承办组织,2:配合组织
     */
    public static final int HANDLE_TYPE_1 = 1;
    public static final int HANDLE_TYPE_2 = 2;
 
    /**
     * 任务超时状态,0:未超时,1:已超时
     */
    public static final int OVERTIME_STATUS_0 = 0;
    public static final int OVERTIME_STATUS_1 = 1;
}
/**
 * -------------------_ooOoo_-------------------
 * ------------------o8888888o------------------
 * ------------------88" . "88------------------
 * ------------------(| -_- |)------------------
 * ------------------O\  =  /O------------------
 * ---------------____/`---'\____---------------
 * -------------.'  \\|     |//  `.-------------
 * ------------/  \\|||  :  |||//  \------------
 * -----------/  _||||| -:- |||||-  \-----------
 * -----------|   | \\\  -  /// |   |-----------
 * -----------| \_|  ''\---/''  |   |-----------
 * -----------\  .-\__  `-`  ___/-. /-----------
 * ---------___`. .'  /--.--\  `. . __----------
 * ------."" '<  `.___\_<|>_/___.'  >'"".-------
 * -----| | :  `- \`.;`\ _ /`;.`/ - ` : | |-----
 * -----\  \ `-.   \_ __\ /__ _/   .-` /  /-----
 * ======`-.____`-.___\_____/___.-`____.-'======
 * -------------------`=---='
 * ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 * ---------佛祖保佑---hugeinfo---永无BUG----------
 */