| package doumeemes.dao.ext.bean; | 
|   | 
| import doumeemes.dao.business.model.Device; | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import java.util.List; | 
|   | 
| @Data | 
| @ApiModel("完工入库对象 - 2022年7月28日") | 
| public class FinishedInNewBean { | 
|   | 
|     @ApiModelProperty(value = "作业员") | 
|     private String worker; | 
|   | 
|     @ApiModelProperty(value = "班组名称") | 
|     private String groupName; | 
|   | 
|     @ApiModelProperty(value = "机台设备列表") | 
|     private List<Device> deviceList; | 
|   | 
|   | 
|     @ApiModelProperty(value = "合格品列表") | 
|     private List<WTransferConfirmDetailBean> qualifiedBeanList; | 
|   | 
|     @ApiModelProperty(value = "不良品列表") | 
|     private List<WTransferConfirmDetailBean> rejectsBeanList; | 
|   | 
|     @ApiModelProperty(value = "报废列表") | 
|     private List<WTransferConfirmDetailBean> scrapBeanList; | 
|   | 
|     @ApiModelProperty(value = "本次余留班次生产数据") | 
|     List<FinishedInBillBean> finishedInBillBeanList; | 
|   | 
|     @ApiModelProperty(value = "待生产仓位主键") | 
|     private List<Integer> produceLocationIds; | 
|   | 
|   | 
| } |