|
|
|
@ -1231,7 +1231,7 @@ public class WmsEnumUtil {
|
|
|
|
|
*/
|
|
|
|
|
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
|
|
|
|
|
public enum QC_INFO_TYPE {
|
|
|
|
|
FEED(1, "进料检验"), ONLINE(10, "在线检验"), EMDPRODUCT(30, "成品检验,"), SHIPMENTS(40, "出货检验,");
|
|
|
|
|
FEED(1, "进料检验"), ONLINE(10, "在线检验"), EMDPRODUCT(30, "成品检验"), SHIPMENTS(40, "出货检验");
|
|
|
|
|
|
|
|
|
|
private int value;
|
|
|
|
|
private String description;
|
|
|
|
@ -1267,9 +1267,9 @@ public class WmsEnumUtil {
|
|
|
|
|
public enum QC_INFO_STATUS {
|
|
|
|
|
CREATE(1, "新建"),
|
|
|
|
|
FINISH(5, "待处理"),
|
|
|
|
|
FAIL(10, "已完成,"),
|
|
|
|
|
CLOSE(90, "已关闭,"),
|
|
|
|
|
CANCEL(91, "已取消,");
|
|
|
|
|
FAIL(10, "已完成"),
|
|
|
|
|
CLOSE(90, "已关闭"),
|
|
|
|
|
CANCEL(91, "已取消");
|
|
|
|
|
|
|
|
|
|
private int value;
|
|
|
|
|
private String description;
|
|
|
|
@ -1769,4 +1769,37 @@ public class WmsEnumUtil {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 成功标志枚举
|
|
|
|
|
*/
|
|
|
|
|
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
|
|
|
|
|
public enum RC_OK_VALUE {
|
|
|
|
|
|
|
|
|
|
IS_TRUE(10, true, "成功"),
|
|
|
|
|
IS_FALSE(20, false, "失败");
|
|
|
|
|
|
|
|
|
|
private int value;
|
|
|
|
|
private boolean codeValue;
|
|
|
|
|
private String description;
|
|
|
|
|
|
|
|
|
|
RC_OK_VALUE(int value, boolean codeValue, String description) {
|
|
|
|
|
this.value = value;
|
|
|
|
|
this.codeValue = codeValue;
|
|
|
|
|
this.description = description;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int getValue() {
|
|
|
|
|
return value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public boolean getCodeValue() {
|
|
|
|
|
return codeValue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getDescription() {
|
|
|
|
|
return description;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|