广州市综治平台后端
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
package cn.huge.module.sys.constant;
 
/**
 * @title: 调解相关常量类
 * @description: 调解相关常量类
 * @company: hugeinfo
 * @author: liyj
 * @time: 2021-11-05 16:51:48
 * @version: 1.0.0
 */
public class FlowBaseConsts {
 
    /**
     * 多元化流程编号
     */
    public static final String DYH_FLOW_1 = "DYH2.0_FLOW_MEDIATE_ROOT";
    public static final String DYH_FLOW_2 = "DYH2.0_FLOW_JUDIC_ROOT";
 
    /**
     * 任务节点类型,1:首节点,2:普通节点,3:结束节点
     */
    public static final int TASK_NODE_TYPE_1 = 1;
    public static final int TASK_NODE_TYPE_2 = 2;
    public static final int TASK_NODE_TYPE_3 = 3;
 
    /**
     * 任务节点类型,1:首节点,2:普通节点,3:结束节点
     */
    public static final int TASK_RESULT_0 = 0;
    public static final int TASK_RESULT_1 = 1;
    public static final int TASK_RESULT_2 = 2;
 
    /**
     * 任务类型,1:正常任务,2:退回任务
     */
    public static final int TASK_TYPE_1 = 1;
    public static final int TASK_TYPE_2 = 2;
 
    /**
     * 任务条件,forward:前进,back:退回
     */
    public static final String OPERATION_1 = "forward";
    public static final String OPERATION_2 = "back";
 
    /**
     * 任务节点执行者类型:22_00026-1:所有人,22_00026-2:上一步骤选择,
     * 22_00026-3:上一步骤执行者,22_00026-4:固定角色
     */
    public static final String OPER_TYPE_1 = "22_00026-1";
    public static final String OPER_TYPE_2 = "22_00026-2";
    public static final String OPER_TYPE_3 = "22_00026-3";
    public static final String OPER_TYPE_4 = "22_00026-4";
}
/**
 * -------------------_ooOoo_-------------------
 * ------------------o8888888o------------------
 * ------------------88" . "88------------------
 * ------------------(| -_- |)------------------
 * ------------------O\  =  /O------------------
 * ---------------____/`---'\____---------------
 * -------------.'  \\|     |//  `.-------------
 * ------------/  \\|||  :  |||//  \------------
 * -----------/  _||||| -:- |||||-  \-----------
 * -----------|   | \\\  -  /// |   |-----------
 * -----------| \_|  ''\---/''  |   |-----------
 * -----------\  .-\__  `-`  ___/-. /-----------
 * ---------___`. .'  /--.--\  `. . __----------
 * ------."" '<  `.___\_<|>_/___.'  >'"".-------
 * -----| | :  `- \`.;`\ _ /`;.`/ - ` : | |-----
 * -----\  \ `-.   \_ __\ /__ _/   .-` /  /-----
 * ======`-.____`-.___\_____/___.-`____.-'======
 * -------------------`=---='
 * ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 * ---------佛祖保佑---hugeinfo---永无BUG----------
 */