|
|
|
@ -4673,6 +4673,25 @@ public class MesPcnEnumUtil {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
|
|
|
|
|
public enum PLC_BUSI_TYPE {
|
|
|
|
|
AGV_EMERGENCY_STOP(10, "紧急停止"),
|
|
|
|
|
AGV_EMERGENCY_RESET(20, "急停复位"),
|
|
|
|
|
AGV_DELAY_HELP(30, "延时帮助");
|
|
|
|
|
|
|
|
|
|
private int value;
|
|
|
|
|
private String description;
|
|
|
|
|
|
|
|
|
|
PLC_BUSI_TYPE(int value, String description) {
|
|
|
|
|
this.value = value;
|
|
|
|
|
this.description = description;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int getValue() {
|
|
|
|
|
return value;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* mes设备状态
|
|
|
|
|
*/
|
|
|
|
|