|
|
@ -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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|