yun-zuoyi
王杰 5 years ago
parent 41cbe4f380
commit 9a959a5184

@ -13,10 +13,10 @@ import org.apache.commons.lang3.StringUtils;
public class MesPcnEnumUtil {
/**
*
*
*/
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
public enum IPC_PROD_ACTION_TYPE {
public enum IPC_ACTION_TYPE {
HAND_WORK(10, "10", "手工录入模式"),
PLC_WORK(20, "20", "PLC监听模式");
@ -24,7 +24,7 @@ public class MesPcnEnumUtil {
private String code;
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.code = code;
this.description = description;

Loading…
Cancel
Save