修改枚举

yun-zuoyi
钮海涛 4 years ago
parent f1159f8afb
commit 30048f4ce1

@ -769,6 +769,7 @@ public class ApsEnumUtil {
@JsonFormat(shape = JsonFormat.Shape.OBJECT) @JsonFormat(shape = JsonFormat.Shape.OBJECT)
public enum WORK_TYPE { public enum WORK_TYPE {
FICTITIOUS("FICTITIOUS", "虚拟工作"), FICTITIOUS("FICTITIOUS", "虚拟工作"),
DYNAMIC_FICTITIOUS("DYNAMIC_FICTITIOUS", "动态虚拟工作"),
NORMAL("NORMAL", "普通工作"); NORMAL("NORMAL", "普通工作");
private String value; private String value;
@ -1179,14 +1180,14 @@ public class ApsEnumUtil {
* *
*/ */
@JsonFormat(shape = JsonFormat.Shape.OBJECT) @JsonFormat(shape = JsonFormat.Shape.OBJECT)
public enum INVENTORY_ORDER_STATUS { public enum SAFE_STOCK_ORDER_STATUS {
UNCOMMIT("UNCOMMIT", "待处理"), UNCOMMIT("UNCOMMIT", "待处理"),
COMMIT("COMMIT", "确认"); COMMIT("COMMIT", "确认");
private String value; private String value;
private String description; private String description;
INVENTORY_ORDER_STATUS(String value, String description) { SAFE_STOCK_ORDER_STATUS(String value, String description) {
this.value = value; this.value = value;
this.description = description; this.description = description;
} }

Loading…
Cancel
Save