ecology_maven/com/api/aiyh_pcn/fadada/entity/UfContractInfoDTO.java

213 lines
4.6 KiB
Java
Raw Normal View History

2021-11-14 15:29:16 +08:00
package com.api.aiyh_pcn.fadada.entity;
2021-11-14 15:29:16 +08:00
public class UfContractInfoDTO {
private int id;
private int requestId;
private int workflowType;
private String contractNo;
private String fileNo;
private String fileName;
private int signedNum;
private int shouldSignedNum;
private int contractStatus;
private String contractViewUrl;
private String contractDownUrl;
private String workflowMainTable;
private int queueSigned;
private int singleContractFileNum;
private int singleSignedNum;
private String workflowRequestId;
private String workflowDetailTable;
2021-12-02 10:51:11 +08:00
private String signedType;
private String userInfo;
2021-11-14 15:29:16 +08:00
private int mainId;
public void setId(int id) {
2021-11-14 15:29:16 +08:00
this.id = id;
}
public void setRequestId(int requestId) {
2021-11-14 15:29:16 +08:00
this.requestId = requestId;
}
public void setWorkflowType(int workflowType) {
2021-11-14 15:29:16 +08:00
this.workflowType = workflowType;
}
public void setContractNo(String contractNo) {
2021-11-14 15:29:16 +08:00
this.contractNo = contractNo;
}
public void setFileNo(String fileNo) {
2021-11-14 15:29:16 +08:00
this.fileNo = fileNo;
}
public void setFileName(String fileName) {
2021-11-14 15:29:16 +08:00
this.fileName = fileName;
}
public void setSignedNum(int signedNum) {
2021-11-14 15:29:16 +08:00
this.signedNum = signedNum;
}
public void setShouldSignedNum(int shouldSignedNum) {
2021-11-14 15:29:16 +08:00
this.shouldSignedNum = shouldSignedNum;
}
public void setContractStatus(int contractStatus) {
2021-11-14 15:29:16 +08:00
this.contractStatus = contractStatus;
}
public void setContractViewUrl(String contractViewUrl) {
2021-11-14 15:29:16 +08:00
this.contractViewUrl = contractViewUrl;
}
public void setContractDownUrl(String contractDownUrl) {
2021-11-14 15:29:16 +08:00
this.contractDownUrl = contractDownUrl;
}
public void setWorkflowMainTable(String workflowMainTable) {
2021-11-14 15:29:16 +08:00
this.workflowMainTable = workflowMainTable;
}
public void setQueueSigned(int queueSigned) {
2021-11-14 15:29:16 +08:00
this.queueSigned = queueSigned;
}
public void setSingleContractFileNum(int singleContractFileNum) {
2021-11-14 15:29:16 +08:00
this.singleContractFileNum = singleContractFileNum;
}
public void setSingleSignedNum(int singleSignedNum) {
2021-11-14 15:29:16 +08:00
this.singleSignedNum = singleSignedNum;
}
public void setWorkflowRequestId(String workflowRequestId) {
2021-11-14 15:29:16 +08:00
this.workflowRequestId = workflowRequestId;
}
public void setWorkflowDetailTable(String workflowDetailTable) {
2021-11-14 15:29:16 +08:00
this.workflowDetailTable = workflowDetailTable;
}
public void setMainId(int mainId) {
2021-11-14 15:29:16 +08:00
this.mainId = mainId;
}
public int getId() {
2021-11-14 15:29:16 +08:00
return this.id;
}
public int getRequestId() {
2021-11-14 15:29:16 +08:00
return this.requestId;
}
public int getWorkflowType() {
2021-11-14 15:29:16 +08:00
return this.workflowType;
}
public String getContractNo() {
2021-11-14 15:29:16 +08:00
return this.contractNo;
}
public String getFileNo() {
2021-11-14 15:29:16 +08:00
return this.fileNo;
}
public String getFileName() {
2021-11-14 15:29:16 +08:00
return this.fileName;
}
public int getSignedNum() {
2021-11-14 15:29:16 +08:00
return this.signedNum;
}
public int getShouldSignedNum() {
2021-11-14 15:29:16 +08:00
return this.shouldSignedNum;
}
public int getContractStatus() {
2021-11-14 15:29:16 +08:00
return this.contractStatus;
}
public String getContractViewUrl() {
2021-11-14 15:29:16 +08:00
return this.contractViewUrl;
}
public String getContractDownUrl() {
2021-11-14 15:29:16 +08:00
return this.contractDownUrl;
}
public String getWorkflowMainTable() {
2021-11-14 15:29:16 +08:00
return this.workflowMainTable;
}
public int getQueueSigned() {
2021-11-14 15:29:16 +08:00
return this.queueSigned;
}
public int getSingleContractFileNum() {
2021-11-14 15:29:16 +08:00
return this.singleContractFileNum;
}
public int getSingleSignedNum() {
2021-11-14 15:29:16 +08:00
return this.singleSignedNum;
}
public String getWorkflowRequestId() {
2021-11-14 15:29:16 +08:00
return this.workflowRequestId;
}
public String getWorkflowDetailTable() {
2021-11-14 15:29:16 +08:00
return this.workflowDetailTable;
}
public int getMainId() {
2021-11-14 15:29:16 +08:00
return this.mainId;
}
2021-12-02 10:51:11 +08:00
public String getSignedType() {
return signedType;
}
public void setSignedType(String signedType) {
this.signedType = signedType;
}
public String getUserInfo() {
return userInfo;
}
public void setUserInfo(String userInfo) {
this.userInfo = userInfo;
}
2021-11-14 15:29:16 +08:00
@Override
public String toString() {
return "UfContractInfoDTO{" +
2021-12-02 10:51:11 +08:00
"id=" + id +
", requestId=" + requestId +
", workflowType=" + workflowType +
2021-11-14 15:29:16 +08:00
", contractNo='" + contractNo + '\'' +
", fileNo='" + fileNo + '\'' +
", fileName='" + fileName + '\'' +
2021-12-02 10:51:11 +08:00
", signedNum=" + signedNum +
", shouldSignedNum=" + shouldSignedNum +
", contractStatus=" + contractStatus +
2021-11-14 15:29:16 +08:00
", contractViewUrl='" + contractViewUrl + '\'' +
", contractDownUrl='" + contractDownUrl + '\'' +
", workflowMainTable='" + workflowMainTable + '\'' +
2021-12-02 10:51:11 +08:00
", queueSigned=" + queueSigned +
", singleContractFileNum=" + singleContractFileNum +
", singleSignedNum=" + singleSignedNum +
2021-11-14 15:29:16 +08:00
", workflowRequestId='" + workflowRequestId + '\'' +
", workflowDetailTable='" + workflowDetailTable + '\'' +
2021-12-02 10:51:11 +08:00
", signedType='" + signedType + '\'' +
", userInfo='" + userInfo + '\'' +
2021-12-02 10:51:11 +08:00
", mainId=" + mainId +
2021-11-14 15:29:16 +08:00
'}';
}
}