Lius
2023-11-06 d6a909e1a3b5fdb7fee5c9a694467f4b52d7d1f9
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.jeecg.modules.mdc.constant;
 
/**
 * @author Lius
 * @date 2023/11/1 16:05
 */
public class MdcConstant {
 
    /**
     * 故障停机
     */
    public static final String BREAKDOWN_DOWN = "故障停机";
 
    /**
     * 换型调试
     */
    public static final String CONVERSION_DEBUG = "换型调试";
 
    /**
     * 物料短缺
     */
    public static final String MATERIAL_SHORTAGE = "物料短缺";
 
    /**
     * 计划等任务
     */
    public static final String PLANNED_TASK = "计划等任务";
 
    /**
     * 检验
     */
    public static final String INSPECT = "检验";
 
    /**
     * 其它
     */
    public static final String OTHER = "其它";
 
    /**
     * 计划保养
     */
    public static final String PLANNED_MAINTENANCE = "日保,周保";
 
    /**
     * 会议培训
     */
    public static final String CONFERENCE_TRAINING = "OPL培训,班前会";
 
    /**
     * 其他休息
     */
    public static final String OTHER_REST = "休息用餐,预防性维修";
 
}