zhangherong
3 天以前 0b8e5e2ee3c47e385816165826754d5cbb86faad
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.lxzn.modules.master.enums;
 
public enum Assembly2EquipmentMappingEnum {
    OP020(new String[]{"", "", ""}), //OP020测量分选检测机
    OP030(new String[]{"", "", ""}), //OP030料库
    OP040(new String[]{"", ""}), //OP040合套加球1
    OP050(new String[]{"", ""}), //OP050合套加球2
    OP090(new String[]{"", ""}), //OP090铆接检测机
    OP100(new String[]{"", ""}), //OP100振动检查机
    OP110(new String[]{"", ""}), //OP110密封件&端盖压装检测机
    OP120(new String[]{"", ""}), //OP120扭矩&ABS信号检测机
    OP150(new String[]{"", ""}), //OP150花键检测机
    OP160(new String[]{"", ""}), //OP160端径跳检测机
    OP170(new String[]{"", ""}), //OP170激光打标&雾化涂油
    ;
 
    /**
     * code:name
     */
    private final String[] equipmentCodes;
 
    private Assembly2EquipmentMappingEnum(String[] equipmentCodes) {
        this.equipmentCodes = equipmentCodes;
    }
 
    public String[] getEquipmentCodes() {
        return equipmentCodes;
    }
}