|
|
@ -13,10 +13,10 @@ import org.apache.commons.lang3.StringUtils;
|
|
|
|
public class MesPcnEnumUtil {
|
|
|
|
public class MesPcnEnumUtil {
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 作业程序组件类型
|
|
|
|
* 注塑生产操作模式
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
|
|
|
|
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
|
|
|
|
public enum IPC_PROD_ACTION_TYPE {
|
|
|
|
public enum IPC_ACTION_TYPE {
|
|
|
|
HAND_WORK(10, "10", "手工录入模式"),
|
|
|
|
HAND_WORK(10, "10", "手工录入模式"),
|
|
|
|
PLC_WORK(20, "20", "PLC监听模式");
|
|
|
|
PLC_WORK(20, "20", "PLC监听模式");
|
|
|
|
|
|
|
|
|
|
|
@ -24,7 +24,7 @@ public class MesPcnEnumUtil {
|
|
|
|
private String code;
|
|
|
|
private String code;
|
|
|
|
private String description;
|
|
|
|
private String description;
|
|
|
|
|
|
|
|
|
|
|
|
IPC_PROD_ACTION_TYPE(int value, String code, String description) {
|
|
|
|
IPC_ACTION_TYPE(int value, String code, String description) {
|
|
|
|
this.value = value;
|
|
|
|
this.value = value;
|
|
|
|
this.code = code;
|
|
|
|
this.code = code;
|
|
|
|
this.description = description;
|
|
|
|
this.description = description;
|
|
|
|