| package doumeemes.dao.ext.bean; | 
|   | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import javax.validation.constraints.NotNull; | 
| import java.math.BigDecimal; | 
| import java.util.List; | 
|   | 
| @Data | 
| @ApiModel("仓库管理- 出库单据明细提交数据") | 
| public class WOutBoundOutDetailBean { | 
|   | 
|     @ApiModelProperty(value = "明细行主键 转库单明细行主键/出库(入库)单明细主键") | 
|     private Integer id; | 
|   | 
|     @ApiModelProperty(value = "货位主键") | 
|     private Integer locationId; | 
|   | 
|     @ApiModelProperty(value = "批次号") | 
|     private String batch; | 
|   | 
|     @ApiModelProperty(value = "出(入)库总数") | 
|     private BigDecimal outNum; | 
|   | 
|     @ApiModelProperty(value = "扫描条码数据") | 
|     private List<OutScanBarcodeBean> outScanBarcodeBeanList; | 
|   | 
| } |