| package doumeemes.dao.ext.bean; | 
|   | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import java.math.BigDecimal; | 
|   | 
| @Data | 
| @ApiModel("仓库管理 - 转库单信息明细(根据工单生成)") | 
| public class WTransferDetailForWOrderBean { | 
|   | 
|     @ApiModelProperty(value = "工序主键") | 
|     private Integer proceduresId; | 
|   | 
|     @ApiModelProperty(value = "转出仓库编码") | 
|     private Integer outWarehouseId; | 
|   | 
|     @ApiModelProperty(value = "物料编码") | 
|     private Integer materialId; | 
|   | 
|     @ApiModelProperty(value = "单位编码") | 
|     private Integer unitId; | 
|   | 
|     @ApiModelProperty(value = "计划转出数量") | 
|     private BigDecimal outPlanNum; | 
|   | 
|     @ApiModelProperty(value = "转入货位编码") | 
|     private Integer inLocationId; | 
|   | 
|     @ApiModelProperty(value = "转入仓库编码") | 
|     private Integer inWarehouseId; | 
|   | 
|     @ApiModelProperty(value = "入库操作员") | 
|     private Integer inUserId; | 
|   | 
|     @ApiModelProperty(value = "工单物料主键") | 
|     private Integer workorderMaterialId; | 
|   | 
|     @ApiModelProperty(value = "工单物料单位主键") | 
|     private Integer workorderUnitlId; | 
|   | 
|     @ApiModelProperty(value = "工单类型 0正常、1返工、2客户返修") | 
|     private Integer type; | 
|   | 
|   | 
|   | 
| } |