BlendLotInfosDto.java
package com.mycim.valueobject.wip.dto;
import com.mycim.valueobject.wip.Job;
import com.mycim.valueobject.wip.Lot;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
/**
* @author finatice.yang
* @date 2021/6/25
**/
public class BlendLotInfosDto implements Serializable {
private List<Lot> normalLotList;
private List<LotInfoDto> normalLotInfoDtoList;
private List<Lot> runCardLotList;
private List<LotInfoDto> runCardLotInfoDtoList;
private List<Lot> autoMonitorLotList;
private List<LotInfoDto> autoMonitorLotInfoDtoList;
private String batchId;
private String deBatchId;
private List<Lot> deBatchLotList;
public BlendLotInfosDto() {
normalLotList = new ArrayList<>();
normalLotInfoDtoList = new ArrayList<>();
runCardLotList = new ArrayList<>();
runCardLotInfoDtoList = new ArrayList<>();
autoMonitorLotList = new ArrayList<>();
autoMonitorLotInfoDtoList = new ArrayList<>();
deBatchLotList = new ArrayList<>();
}
public List<Lot> getNormalLotList() {
return normalLotList;
}
public void setNormalLotList(List<Lot> normalLotList) {
this.normalLotList = normalLotList;
}
public List<LotInfoDto> getNormalLotInfoDtoList() {
return normalLotInfoDtoList;
}
public void setNormalLotInfoDtoList(List<LotInfoDto> normalLotInfoDtoList) {
this.normalLotInfoDtoList = normalLotInfoDtoList;
}
public List<Lot> getRunCardLotList() {
return runCardLotList;
}
public void setRunCardLotList(List<Lot> runCardLotList) {
this.runCardLotList = runCardLotList;
}
public List<LotInfoDto> getRunCardLotInfoDtoList() {
return runCardLotInfoDtoList;
}
public void setRunCardLotInfoDtoList(List<LotInfoDto> runCardLotInfoDtoList) {
this.runCardLotInfoDtoList = runCardLotInfoDtoList;
}
public List<Lot> getAutoMonitorLotList() {
return autoMonitorLotList;
}
public void setAutoMonitorLotList(List<Lot> autoMonitorLotList) {
this.autoMonitorLotList = autoMonitorLotList;
}
public List<LotInfoDto> getAutoMonitorLotInfoDtoList() {
return autoMonitorLotInfoDtoList;
}
public void setAutoMonitorLotInfoDtoList(List<LotInfoDto> autoMonitorLotInfoDtoList) {
this.autoMonitorLotInfoDtoList = autoMonitorLotInfoDtoList;
}
public String getBatchId() {
return batchId;
}
public void setBatchId(String batchId) {
this.batchId = batchId;
}
public String getDeBatchId() {
return deBatchId;
}
public void setDeBatchId(String deBatchId) {
this.deBatchId = deBatchId;
}
public List<Lot> getDeBatchLotList() {
return deBatchLotList;
}
public void setDeBatchLotList(List<Lot> deBatchLotList) {
this.deBatchLotList = deBatchLotList;
}
}