| | |
| | | package com.whyc.dto; |
| | | |
| | | import com.whyc.pojo.ComponentProductApproving; |
| | | import com.whyc.pojo.MaterialProductApproving; |
| | | 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; |
| | | private List<MaterialProductApproving> addedList; |
| | | //private List<MaterialProductApproving> replacedList; |
| | | private List<MaterialProductApproving> removedList; |
| | | |
| | | public WorksheetMain getMain() { |
| | | return main; |
| | |
| | | this.main = main; |
| | | } |
| | | |
| | | public List<ComponentProductApproving> getAddedList() { |
| | | public List<MaterialProductApproving> getAddedList() { |
| | | return addedList; |
| | | } |
| | | |
| | | public void setAddedList(List<ComponentProductApproving> addedList) { |
| | | public void setAddedList(List<MaterialProductApproving> addedList) { |
| | | this.addedList = addedList; |
| | | } |
| | | |
| | | public List<ComponentProductApproving> getReplacedList() { |
| | | return replacedList; |
| | | } |
| | | //public List<MaterialProductApproving> getReplacedList() { |
| | | // return replacedList; |
| | | //} |
| | | |
| | | public void setReplacedList(List<ComponentProductApproving> replacedList) { |
| | | this.replacedList = replacedList; |
| | | } |
| | | //public void setReplacedList(List<MaterialProductApproving> replacedList) { |
| | | // this.replacedList = replacedList; |
| | | //} |
| | | |
| | | public List<ComponentProductApproving> getRemovedList() { |
| | | public List<MaterialProductApproving> getRemovedList() { |
| | | return removedList; |
| | | } |
| | | |
| | | public void setRemovedList(List<ComponentProductApproving> removedList) { |
| | | public void setRemovedList(List<MaterialProductApproving> removedList) { |
| | | this.removedList = removedList; |
| | | } |
| | | } |