yangys
2025-08-02 b854c5cde81a88e8dea0b5df03219a2fcfef6ac6
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
package org.springblade.mdm.flow.constants;
 
public class FlowContants {
    public static final String PROGRAM_IDS_KEY = "programids";
 
    /**
     * 图号
     */
    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 CRAFT_EDITION = "craftEdition";
    /**
     * 产品型号
     */
    public static final String PRODUCT_MODEL = "productModel";
 
    /**
     * 是否有固化程序
     */
    public static final String HAS_CURED_PROGRAM = "hasCuredProgram";
}