| package doumeemes.dao.ext.bean; | 
|   | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import java.math.BigDecimal; | 
| import java.util.List; | 
|   | 
| @Data | 
| @ApiModel("仓库管理- 入库单据明细提交数据") | 
| public class WOutBoundInDetailBean { | 
|   | 
|     @ApiModelProperty(value = "明细行主键,存在id表示为PC端建立的入库数据") | 
|     private Integer id; | 
|   | 
|     @ApiModelProperty(value = "物料主键") | 
|     private Integer materialId; | 
|   | 
|     @ApiModelProperty(value = "单位编码主键") | 
|     private Integer unitId; | 
|   | 
|     @ApiModelProperty(value = "货位主键") | 
|     private Integer locationId; | 
|   | 
|     @ApiModelProperty(value = "批次号") | 
|     private String batch; | 
|   | 
|     @ApiModelProperty(value = "入库数量") | 
|     private BigDecimal num; | 
|   | 
|     @ApiModelProperty(value = "扫描条码数据") | 
|     List<OutScanBarcodeBean> outScanBarcodeBeanList; | 
|   | 
| } |