lxw
2023-05-25 f3c27fb78447449a950ba73c5e72ceda64ad8a12
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
package com.whyc.dto;
 
import com.whyc.pojo.BattDischargePlanTemp;
import com.whyc.pojo.WorkflowLink;
 
import java.util.List;
 
public class WorkflowLinkDTO {
    private WorkflowLink link;
    private List<BattDischargePlanTemp> tempList;
 
    public WorkflowLink getLink() {
        return link;
    }
 
    public void setLink(WorkflowLink link) {
        this.link = link;
    }
 
    public List<BattDischargePlanTemp> getTempList() {
        return tempList;
    }
 
    public void setTempList(List<BattDischargePlanTemp> tempList) {
        this.tempList = tempList;
    }
}