| | |
| | | import javax.validation.constraints.NotBlank; |
| | | import javax.validation.constraints.NotEmpty; |
| | | import java.io.Serializable; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * Created by vincent on 2020/6/13 |
| | |
| | | @Data |
| | | @Accessors(chain = true) |
| | | public class LocMastInitParam implements Serializable { |
| | | |
| | | @ApiModelProperty("仓库ID") |
| | | private Long warehouseId; |
| | | |
| | | @ApiModelProperty("库区ID") |
| | | private Long areaId; |
| | |
| | | |
| | | @ApiModelProperty("库位类型") |
| | | @NotBlank(message = "库位类型") |
| | | private String type; |
| | | private List<Long> typeIds; |
| | | |
| | | @ApiModelProperty("宽窄类型") |
| | | private String locType; |
| | | |
| | | } |