【14903 19108+ PCN【上装工位】逻辑优化 +2021-04-03】

yun-zuoyi
陈思洁 4 years ago
parent eacbdbaa7d
commit 6ffd586274

@ -6625,4 +6625,32 @@ public class MesPcnEnumUtil {
}
}
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
public enum THA_MONITOR_STATUS {
MONITORING(10, "MONITORING", "监听中"),
MONITOR_COMPLETE(20, "MONITOR_COMPLETE", "监听完成");
private int value;
private String code;
private String description;
THA_MONITOR_STATUS(int value, String code, String description) {
this.value = value;
this.code = code;
this.description = description;
}
public int getValue() {
return value;
}
public String getCode() {
return code;
}
public String getDescription() {
return description;
}
}
}

Loading…
Cancel
Save