213 lines
4.6 KiB
Java
213 lines
4.6 KiB
Java
|
|
package com.api.aiyh_pcn.fadada.entity;
|
|
|
|
|
|
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;
|
|
private String signedType;
|
|
private String userInfo;
|
|
private int mainId;
|
|
|
|
public void setId(int id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public void setRequestId(int requestId) {
|
|
this.requestId = requestId;
|
|
}
|
|
|
|
public void setWorkflowType(int workflowType) {
|
|
this.workflowType = workflowType;
|
|
}
|
|
|
|
public void setContractNo(String contractNo) {
|
|
this.contractNo = contractNo;
|
|
}
|
|
|
|
public void setFileNo(String fileNo) {
|
|
this.fileNo = fileNo;
|
|
}
|
|
|
|
public void setFileName(String fileName) {
|
|
this.fileName = fileName;
|
|
}
|
|
|
|
public void setSignedNum(int signedNum) {
|
|
this.signedNum = signedNum;
|
|
}
|
|
|
|
public void setShouldSignedNum(int shouldSignedNum) {
|
|
this.shouldSignedNum = shouldSignedNum;
|
|
}
|
|
|
|
public void setContractStatus(int contractStatus) {
|
|
this.contractStatus = contractStatus;
|
|
}
|
|
|
|
public void setContractViewUrl(String contractViewUrl) {
|
|
this.contractViewUrl = contractViewUrl;
|
|
}
|
|
|
|
public void setContractDownUrl(String contractDownUrl) {
|
|
this.contractDownUrl = contractDownUrl;
|
|
}
|
|
|
|
public void setWorkflowMainTable(String workflowMainTable) {
|
|
this.workflowMainTable = workflowMainTable;
|
|
}
|
|
|
|
public void setQueueSigned(int queueSigned) {
|
|
this.queueSigned = queueSigned;
|
|
}
|
|
|
|
public void setSingleContractFileNum(int singleContractFileNum) {
|
|
this.singleContractFileNum = singleContractFileNum;
|
|
}
|
|
|
|
public void setSingleSignedNum(int singleSignedNum) {
|
|
this.singleSignedNum = singleSignedNum;
|
|
}
|
|
|
|
public void setWorkflowRequestId(String workflowRequestId) {
|
|
this.workflowRequestId = workflowRequestId;
|
|
}
|
|
|
|
public void setWorkflowDetailTable(String workflowDetailTable) {
|
|
this.workflowDetailTable = workflowDetailTable;
|
|
}
|
|
|
|
public void setMainId(int mainId) {
|
|
this.mainId = mainId;
|
|
}
|
|
|
|
public int getId() {
|
|
return this.id;
|
|
}
|
|
|
|
public int getRequestId() {
|
|
return this.requestId;
|
|
}
|
|
|
|
public int getWorkflowType() {
|
|
return this.workflowType;
|
|
}
|
|
|
|
public String getContractNo() {
|
|
return this.contractNo;
|
|
}
|
|
|
|
public String getFileNo() {
|
|
return this.fileNo;
|
|
}
|
|
|
|
public String getFileName() {
|
|
return this.fileName;
|
|
}
|
|
|
|
public int getSignedNum() {
|
|
return this.signedNum;
|
|
}
|
|
|
|
public int getShouldSignedNum() {
|
|
return this.shouldSignedNum;
|
|
}
|
|
|
|
public int getContractStatus() {
|
|
return this.contractStatus;
|
|
}
|
|
|
|
public String getContractViewUrl() {
|
|
return this.contractViewUrl;
|
|
}
|
|
|
|
public String getContractDownUrl() {
|
|
return this.contractDownUrl;
|
|
}
|
|
|
|
public String getWorkflowMainTable() {
|
|
return this.workflowMainTable;
|
|
}
|
|
|
|
public int getQueueSigned() {
|
|
return this.queueSigned;
|
|
}
|
|
|
|
public int getSingleContractFileNum() {
|
|
return this.singleContractFileNum;
|
|
}
|
|
|
|
public int getSingleSignedNum() {
|
|
return this.singleSignedNum;
|
|
}
|
|
|
|
public String getWorkflowRequestId() {
|
|
return this.workflowRequestId;
|
|
}
|
|
|
|
public String getWorkflowDetailTable() {
|
|
return this.workflowDetailTable;
|
|
}
|
|
|
|
public int getMainId() {
|
|
return this.mainId;
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "UfContractInfoDTO{" +
|
|
"id=" + id +
|
|
", requestId=" + requestId +
|
|
", workflowType=" + workflowType +
|
|
", contractNo='" + contractNo + '\'' +
|
|
", fileNo='" + fileNo + '\'' +
|
|
", fileName='" + fileName + '\'' +
|
|
", signedNum=" + signedNum +
|
|
", shouldSignedNum=" + shouldSignedNum +
|
|
", contractStatus=" + contractStatus +
|
|
", contractViewUrl='" + contractViewUrl + '\'' +
|
|
", contractDownUrl='" + contractDownUrl + '\'' +
|
|
", workflowMainTable='" + workflowMainTable + '\'' +
|
|
", queueSigned=" + queueSigned +
|
|
", singleContractFileNum=" + singleContractFileNum +
|
|
", singleSignedNum=" + singleSignedNum +
|
|
", workflowRequestId='" + workflowRequestId + '\'' +
|
|
", workflowDetailTable='" + workflowDetailTable + '\'' +
|
|
", signedType='" + signedType + '\'' +
|
|
", userInfo='" + userInfo + '\'' +
|
|
", mainId=" + mainId +
|
|
'}';
|
|
}
|
|
} |