whyclxw
2024-04-22 ec33a306d97e52eb725b47f48d337ce357a8ef6a
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
50
package com.whyc.dto;
 
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.whyc.pojo.BattDischargePlanTemp;
import com.whyc.pojo.FaultUpload;
import com.whyc.pojo.FaultUploadApplication;
import com.whyc.pojo.WorkflowLink;
 
import java.util.List;
 
@JsonIgnoreProperties(ignoreUnknown = true)
public class WorkflowLinkDTO {
    private WorkflowLink link;
    private List<BattDischargePlanTemp> tempList;
 
    private FaultUpload faultUpload;
    private Integer type;
 
    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;
    }
 
    public Integer getType() {
        return type;
    }
 
    public void setType(Integer type) {
        this.type = type;
    }
 
    public FaultUpload getFaultUpload() {
        return faultUpload;
    }
 
    public void setFaultUpload(FaultUpload faultUpload) {
        this.faultUpload = faultUpload;
    }
}