yangys
2024-09-04 04c57331cf84c8f606c2838dcb6fe5463fb9b68c
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
package com.qianwen.smartman.modules.cps.enums;
 
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;
    }
}