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;
|
}
|
}
|