| package doumeemes.dao.ext.bean; | 
|   | 
| import com.fasterxml.jackson.annotation.JsonFormat; | 
| import doumeemes.core.annotation.excel.ExcelColumn; | 
| 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.Date; | 
|   | 
| @Data | 
| @ApiModel("仓库管理 - 转库单信息明细") | 
| public class WTransferDetailBean { | 
|   | 
|     @ApiModelProperty(value = "物料编码") | 
|     private Integer materialId; | 
|   | 
|     @ApiModelProperty(value = "单位编码") | 
|     private Integer unitId; | 
|   | 
|     @ApiModelProperty(value = "批次号") | 
|     private String batch; | 
|   | 
|     @ApiModelProperty(value = "计划转出数量") | 
|     private BigDecimal outPlanNum; | 
|   | 
|     @ApiModelProperty(value = "转出货位编码") | 
|     private Integer outLocationId; | 
|   | 
|     @ApiModelProperty(value = "转入仓库编码") | 
|     private Integer inWarehouseId; | 
|   | 
|     @ApiModelProperty(value = "转入货位编码") | 
|     private Integer inLocationId; | 
|   | 
|     @ApiModelProperty(value = "转出仓库编码") | 
|     private Integer outWarehouseId; | 
|   | 
|     @ApiModelProperty(value = "入库操作员") | 
|     private Integer inUserId; | 
|   | 
|     @ApiModelProperty(value = "工序主键") | 
|     private Integer proceduresId; | 
|   | 
|     @ApiModelProperty(value = "工序编码") | 
|     private Integer procedureId; | 
|   | 
|     @ApiModelProperty(value = "工序名称") | 
|     private String procedureName; | 
|   | 
|     @ApiModelProperty(value = "产品质量属性 0合格 1不良 2报废") | 
|     private Integer qualityType; | 
| } |