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;
|
}
|
}
|