package com.whyc.dto;
|
|
import com.whyc.pojo.ComponentProductApproving;
|
import com.whyc.pojo.WorksheetMain;
|
|
import java.util.List;
|
|
/**
|
* 工作流主表,关联散件产品
|
*/
|
public class WorksheetMainDTO {
|
|
private WorksheetMain main;
|
private List<ComponentProductApproving> addedList;
|
private List<ComponentProductApproving> replacedList;
|
private List<ComponentProductApproving> removedList;
|
|
public WorksheetMain getMain() {
|
return main;
|
}
|
|
public void setMain(WorksheetMain main) {
|
this.main = main;
|
}
|
|
public List<ComponentProductApproving> getAddedList() {
|
return addedList;
|
}
|
|
public void setAddedList(List<ComponentProductApproving> addedList) {
|
this.addedList = addedList;
|
}
|
|
public List<ComponentProductApproving> getReplacedList() {
|
return replacedList;
|
}
|
|
public void setReplacedList(List<ComponentProductApproving> replacedList) {
|
this.replacedList = replacedList;
|
}
|
|
public List<ComponentProductApproving> getRemovedList() {
|
return removedList;
|
}
|
|
public void setRemovedList(List<ComponentProductApproving> removedList) {
|
this.removedList = removedList;
|
}
|
}
|