whycxzp
2024-12-12 d5420410ca7a4d27c7ab5fd90720d58ad245fe28
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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;
    }
}