| package doumeemes.dao.ext.bean; | 
|   | 
| import com.fasterxml.jackson.annotation.JsonFormat; | 
| import io.swagger.annotations.Api; | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import javax.validation.constraints.NotNull; | 
| import java.util.Date; | 
| import java.util.List; | 
|   | 
| @Data | 
| @ApiModel("仓库管理- 出库单据提交数据") | 
| public class WOutBoundOutBean { | 
|   | 
|     @ApiModelProperty(value = "操作上传类别:1=转库单;2=出库单/入库单") | 
|     @NotNull( message = "操作上传类别不能为空") | 
|     private Integer billType; | 
|   | 
|     @ApiModelProperty(value = "单据主键") | 
|     @NotNull( message = "单据主键不能为空") | 
|     private Integer id; | 
|   | 
|   | 
|     @ApiModelProperty(value = "出库单仓库信息") | 
|     private List<WOutBoundOutWarehouse> wOutBoundOutWarehouseList; | 
|   | 
|   | 
|   | 
|   | 
|   | 
| } |