修改海纳川问题

yun-zuoyi
宋军超 5 years ago
parent 4a59b5c913
commit e007a52732

@ -4566,4 +4566,23 @@ public class MesPcnEnumUtil {
}
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
public enum MES_PTL_IS_LIGHT {
IS_PICK_LIGHT(10, "不需亮灯");
private int value;
private String description;
MES_PTL_IS_LIGHT(int value, String description) {
this.value = value;
this.description = description;
}
public int getValue() {
return value;
}
}
}

Loading…
Cancel
Save