库存预警看板

yun-zuoyi
sky.meng 6 years ago
parent 2f1a3080ba
commit 3cc4aec00a

@ -2657,16 +2657,16 @@ public class WmsEnumUtil {
HIGH("HIGH", "高于最高库存"), HIGH("HIGH", "高于最高库存"),
NORMAL("NORMAL", "安全库存"); NORMAL("NORMAL", "安全库存");
private String code; private String value;
private String description; private String description;
STOCK_LEVEL_STATUS(String code, String description) { STOCK_LEVEL_STATUS(String value, String description) {
this.code = code; this.value = value;
this.description = description; this.description = description;
} }
public String getCode() { public String getValue() {
return code; return value;
} }
public String getDescription() { public String getDescription() {

Loading…
Cancel
Save