yangys
2025-08-05 c1df00bdfe8f933ce858339de7b6e2d1d092f641
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
package org.springblade.mdm.flow.constants;
 
public class FlowContants {
 
 
    public static final String PROGRAM_IDS_KEY = "programids";
 
    /**
     * 流程标题
     */
    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";
 
}