forked from gzzfw/backEnd/gz-dyh

liyj
2024-09-22 7f36093f033ff534667a49a1d5f3342007eed11e
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
package cn.huge.module.cases.consts;
 
/**
 * @title: 用户相关常量类
 * @description: 用户相关常量
 * @company: hugeinfo
 * @author: liyj
 * @time: 2021-11-05 16:51:48
 * @version: 1.0.0
 */
public class CaseTaskConsts {
 
    /**
     * 任务类型,1:正常流转,2:回退申请,3:上报申请
     */
    public static final int TASK_TYPE_1 = 1;
    public static final int TASK_TYPE_2 = 2;
    public static final int TASK_TYPE_3 = 3;
    // 用于流程展示,4:不予受理
    public static final int TASK_TYPE_4 = 4;
 
    /**
     * 纠纷任务类型,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:未签收,:2:已签收
     */
    public static final int SIGN_STATUS_0 = 0;
    public static final int SIGN_STATUS_1 = 1;
    public static final int SIGN_STATUS_2 = 2;
 
    /**
     * 任务进度,1:进行中,2:已完成
     */
    public static final int TASK_STATUS_1 = 1;
    public static final int TASK_STATUS_2 = 2;
 
    /**
     * 处理结果,1:通过,2:不通过,3:不予受理
     */
    public static final int HANDLE_RESULT_1 = 1;
    public static final int HANDLE_RESULT_2 = 2;
    public static final int HANDLE_RESULT_3 = 3;
 
    /**
     * 配合状态,0:配合,1:回退
     */
    public static final int ASSIST_STATUS_0 = 0;
    public static final int ASSIST_STATUS_1 = 1;
}
/**
 * -------------------_ooOoo_-------------------
 * ------------------o8888888o------------------
 * ------------------88" . "88------------------
 * ------------------(| -_- |)------------------
 * ------------------O\  =  /O------------------
 * ---------------____/`---'\____---------------
 * -------------.'  \\|     |//  `.-------------
 * ------------/  \\|||  :  |||//  \------------
 * -----------/  _||||| -:- |||||-  \-----------
 * -----------|   | \\\  -  /// |   |-----------
 * -----------| \_|  ''\---/''  |   |-----------
 * -----------\  .-\__  `-`  ___/-. /-----------
 * ---------___`. .'  /--.--\  `. . __----------
 * ------."" '<  `.___\_<|>_/___.'  >'"".-------
 * -----| | :  `- \`.;`\ _ /`;.`/ - ` : | |-----
 * -----\  \ `-.   \_ __\ /__ _/   .-` /  /-----
 * ======`-.____`-.___\_____/___.-`____.-'======
 * -------------------`=---='
 * ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 * ---------佛祖保佑---hugeinfo---永无BUG----------
 */