yangys
2025-09-18 0d61b9bfca526e9c3da2209de8f9f367e76fd013
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
package org.springblade.mdm.flow.constants;
 
public class FlowConstant {
 
    public static final String Y = "Y";
    public static final String N = "N";
 
    /**
     * 试切流程KEY
     */
    public static final String TRY_PROCESS_KEY = "dispatch";
 
    /**
     * 程序补充流程KEY
     */
    public static final String APPEND_PROCESS_KEY = "program-append";
    /**
     * 固化流程KEY
     */
    public static final String CURE_PROCESS_KEY = "program-cure";
    /**
     * 程序替换流程key
     */
    public static final String REPLACE_PROCESS_KEY = "program-replace";
 
    /**
     * 程序解锁流程key
     */
    public static final String UNLOCK_PROCESS_KEY = "program-unlock";
 
 
 
 
 
 
 
 
 
    /**
     * 固化程序,审批具体是否可用
     */
    public static final String CURE_PROGRAM_USEABLE = "cureProgramUseable";
 
 
    /**
     * 流程中如果针对哪个节点发起流程,使用这个关键字在流程变量中存放nodeId
     */
    public static final String NODE_ID = "nodeId";
 
    /**
     * 编程员姓名
     */
    public static final String PROGRAMMER_NAME = "programmerName";
 
 
 
 
}