|
|
|
@ -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() {
|
|
|
|
|