whycxzp
2022-08-13 fde67238dfcd493876d45d6916d3f7bdd2bb7120
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.ComponentProductApproving;
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;
 
    public WorksheetMain getMain() {
        return main;
    }
 
    public void setMain(WorksheetMain main) {
        this.main = main;
    }
 
    public List<ComponentProductApproving> getAddedList() {
        return addedList;
    }
 
    public void setAddedList(List<ComponentProductApproving> addedList) {
        this.addedList = addedList;
    }
 
    public List<ComponentProductApproving> getReplacedList() {
        return replacedList;
    }
 
    public void setReplacedList(List<ComponentProductApproving> replacedList) {
        this.replacedList = replacedList;
    }
 
    public List<ComponentProductApproving> getRemovedList() {
        return removedList;
    }
 
    public void setRemovedList(List<ComponentProductApproving> removedList) {
        this.removedList = removedList;
    }
}