|
|
@ -3574,7 +3574,10 @@ public class WmsEnumUtil {
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
|
|
|
|
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
|
|
|
|
public enum WMS_STOCK_TYPE {
|
|
|
|
public enum WMS_STOCK_TYPE {
|
|
|
|
SOURCE(10, "实物条码"), TARGET(20, "虚拟条码"), CUST_SN(30, "客户条码");
|
|
|
|
SOURCE(10, "实物条码"),
|
|
|
|
|
|
|
|
TARGET(20, "虚拟条码"),
|
|
|
|
|
|
|
|
CUST_SN(30, "客户条码"),
|
|
|
|
|
|
|
|
FIRST_MIDDLE_LAST(40, "首中末件");
|
|
|
|
|
|
|
|
|
|
|
|
private int value;
|
|
|
|
private int value;
|
|
|
|
private String description;
|
|
|
|
private String description;
|
|
|
|