修改是否指定条码枚举

yun-zuoyi
jessica.chen 6 years ago
parent 63d0178cfd
commit 8e5a26bc63

@ -2036,13 +2036,13 @@ public class WmsEnumUtil {
* *
*/ */
@JsonFormat(shape = JsonFormat.Shape.OBJECT) @JsonFormat(shape = JsonFormat.Shape.OBJECT)
public enum ORDER_IS_SN { public enum IS_CHECK_SN {
IS_APPOINT_SN(1, "指定条码"), APPOINT_SN(2, "不指定条码"); IS_APPOINT_SN(1, "指定条码"), APPOINT_SN(2, "不指定条码");
private int value; private int value;
private String description; private String description;
ORDER_IS_SN(int value, String description) { IS_CHECK_SN(int value, String description) {
this.value = value; this.value = value;
this.description = description; this.description = description;
} }

Loading…
Cancel
Save