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