yangys
2025-09-07 d34d3c83500d5a68715a280eee3d930c88291d71
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
package org.springblade.mdm.flow.constants;
 
public class FlowContants {
 
    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 TEAM_LEADER = "teamLeader";
 
    public static final String PROGRAMMER = "programmer";
 
    public static final String CHECKER = "checker";
 
    public static final String SENIOR = "senior";
 
    public static final String ASSIGNEE = "assignee";
    /**
     * 流程标题
     */
    public static final String TITLE = "title";
    /**
     * 图号
     */
    public static final String DRAWING_NO = "drawingNo";
    /**
     * 工序号
     */
    public static final String PROCESS_NO = "processNo";
    /**
     * 图号版次
     */
    public static final String DRAWING_NO_EDITION = "drawingNoEdition";
    /**
     * 工序版次
     */
    public static final String PROCESS_EDITION = "processEdition";
    /*
    机床编码
     */
    public static final String MACHINE_CODE = "machineCode";
    /**
     * 机床型号
     */
    public static final String MACHINE_MODE = "machineMode";
    /**
     * 工艺版次
     */
    public static final String CRAFT_EDITION = "craftEdition";
    /**
     * 产品型号
     */
    public static final String PRODUCT_MODEL = "productModel";
 
    /**
     * 是否有固化程序
     */
    public static final String HAS_CURED_PROGRAM = "hasCuredProgram";
 
    /**
     * 固化程序包名的id
     */
    public static final String CURED_NODE_ID = "curedNodeId";
    /**
     * 工序名称
     */
    public static final String PROCESS_NAME = "processName";
 
    /**
     * 上一步审批用户姓名
     */
    public static final String LAST_STEP_USER_NICKNAME = "approveUserNickName";
    /**
     * 工序版次是否一致的key
     */
    public static final String IS_PROCESS_EDITION_SAME = "isProcessEditionSame";
 
 
 
    /**
     * 是否在有效期内的key
     */
    public static final String VALIDITY_PERIOD = "validityPeriod";
 
    /**
     * 程序包名
     */
    public static final String PROGRAM_PACKAGE_NAME = "programPackageName";
 
    /**
     * 任务车间
     */
    public static final String WORKSHOP = "workshop";
 
    /**
     * 偏离单号
     */
    public static final String DEVIATION = "deviation";
    /**
     * 固化程序,审批具体是否可用
     */
    public static final String CURE_PROGRAM_USEABLE = "cureProgramUseable";
 
    /**
     * 自己定一的流程名称
     */
    public static final String MY_PROCESS_NAME = "myProcessName";
    /**
     * 流程中如果针对哪个节点发起流程,使用这个关键字在流程变量中存放nodeId
     */
    public static final String NODE_ID = "nodeId";
    /**
     * 流程变量中的异常标志,="1"为异常流程
     */
    public static final String EXCEPTION = "exception";
    /**
     * 编程员姓名
     */
    public static final String PROGRAMMER_NAME = "programmerName";
 
    /**
     * 是否临时流程,临时流程不检查程序文件名合法性,不生成产品结构树
     */
    public static final String IS_TEMP_FLOW = "isTempFlow";
    /*
    已固化但以已所帝国标志 Y/N
     */
    public static final String CURED_LOCKED = "curedLocked";
    /**
     * 程序编号
     */
    public static final String PROGRAM_NO = "programNo";
}