流程管家:提交检验+预回显优化;

直送发运JOB:#5132
yun-zuoyi
许心洁 6 years ago
parent b2328bb085
commit 7f3d902a30

@ -19,6 +19,39 @@ public class WmsEnumUtil {
/**
*
*/
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
public enum GROUP_COMMIT_CHECK {
DISABLE(1, "禁止提交"), CHECK_MOVE(2, "校验移动单"), NO_CHECK(3, "不校验");
private int value;
private String description;
GROUP_COMMIT_CHECK(int value, String description) {
this.value = value;
this.description = description;
}
public int getValue() {
return value;
}
public String getDescription() {
return description;
}
public static GROUP_COMMIT_CHECK codeOf(int value) {
for (int i = 0; i < values().length; i++) {
if (values()[i].value == value) {
return values()[i];
}
}
return null;
}
}
/**
*
*/
@JsonFormat(shape = JsonFormat.Shape.OBJECT)

Loading…
Cancel
Save