yangys
2025-08-06 1911be8941e5fe2705c2c56e74e52bd426468793
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
package org.springblade.mdm.flow.constants;
 
public class FlowContants {
 
    /**
     * 试切流程KEY
     */
    public static final String TRY_PROCESS_KEY = "dispatch";
 
    /**
     * 固化流程KEY
     */
    public static final String CURE_PROCESS_KEY = "program-cure";
    /**
     * 流程标题
     */
    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";
    /**
     * 工序名称
     */
    public static final String PROCESS_NAME = "processName";
 
    /**
     * 上一步审批用户姓名
     */
    public static final String LAST_STEP_USER_NICKNAME = "approveUserNickName";
}