库存预警看板

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

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

Loading…
Cancel
Save