You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
udi-wms-java/src/main/java/com/glxp/api/res/inv/BindInvSpaceRequest.java

54 lines
883 B
Java

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.glxp.api.res.inv;
import lombok.Data;
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotEmpty;
import java.util.List;
/**
* 库存条码绑定货位参数
*/
@Data
public class BindInvSpaceRequest {
/**
* 部门编码
*/
private String deptCode;
/**
* 仓库编码
*/
@NotBlank(message = "请选择仓库")
private String invCode;
/**
* 货位编码
*/
@NotBlank(message = "请选择货位")
private String invSpaceCode;
/**
* 条码列表
*/
@NotEmpty(message = "请扫描货物条码")
private List<String> codeArray;
/**
* UDI码
*/
private String code;
/**
* 上架方式 1按物资上架 2按单上架
*/
private Integer type;
/**
* 单号
*/
private String orderId;
}