whycxzp
2024-01-03 66db1d15cf5d4b51a346a42b66f0505bd7f31ce0
src/main/java/com/whyc/dto/WorksheetMainDTO.java
@@ -1,6 +1,6 @@
package com.whyc.dto;
import com.whyc.pojo.ComponentProductApproving;
import com.whyc.pojo.MaterialProductApproving;
import com.whyc.pojo.WorksheetMain;
import java.util.List;
@@ -11,9 +11,9 @@
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;
@@ -23,27 +23,27 @@
        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;
    }
}