yangys
2024-03-27 e48aa2ac8dea1be5db11c63edf0b912c4ad5ce65
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
package com.qianwen.smartman.modules.cps.enums;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/cps/enums/ProcessTypeEnum.class */
public enum ProcessTypeEnum {
    OTHER(0, "其他"),
    MARKING(1, "打标"),
    MEASUREMENT(2, "测量"),
    CLEANING(3, "清洗"),
    LOADING(4, "装卸"),
    PROCESSING(5, "加工"),
    CARRY(6, "搬运"),
    THREE_COORDINATES(7, "三坐标");
    
    private final Integer type;
    private final String desc;
 
    ProcessTypeEnum(final Integer type, final String desc) {
        this.type = type;
        this.desc = desc;
    }
 
    public Integer getType() {
        return this.type;
    }
 
    public String getDesc() {
        return this.desc;
    }
}