lxw
2022-09-01 b848451e8889fea12ce40b7818c1b8d84b50ea02
src/main/java/com/whyc/dto/WorksheetMainDTO.java
New file
@@ -0,0 +1,49 @@
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;
    }
}