144 lines
2.7 KiB
Java
144 lines
2.7 KiB
Java
|
|
package com.api.aiyh_pcn.fadada.entity;
|
|
|
|
|
|
public class FaDaDaConfigDTO {
|
|
|
|
private int id;
|
|
private int workflowType;
|
|
private int apiType;
|
|
private String paramsConfig;
|
|
private String fieldControl;
|
|
private int checkSourceType;
|
|
private String checkSource;
|
|
private String contractDoc;
|
|
private int signedType;
|
|
private String fieldControl1;
|
|
private int onlyOwn;
|
|
private int onlyOther;
|
|
private int bothAll;
|
|
|
|
|
|
public void setId(int id){
|
|
this.id = id;
|
|
}
|
|
|
|
public void setWorkflowType(int workflowType){
|
|
this.workflowType = workflowType;
|
|
}
|
|
|
|
public void setApiType(int apiType){
|
|
this.apiType = apiType;
|
|
}
|
|
|
|
public void setParamsConfig(String paramsConfig){
|
|
this.paramsConfig = paramsConfig;
|
|
}
|
|
|
|
public void setFieldControl(String fieldControl){
|
|
this.fieldControl = fieldControl;
|
|
}
|
|
|
|
public void setCheckSourceType(int checkSourceType){
|
|
this.checkSourceType = checkSourceType;
|
|
}
|
|
|
|
public void setCheckSource(String checkSource){
|
|
this.checkSource = checkSource;
|
|
}
|
|
|
|
public int getId(){
|
|
return this.id;
|
|
}
|
|
|
|
public int getWorkflowType(){
|
|
return this.workflowType;
|
|
}
|
|
|
|
public int getApiType(){
|
|
return this.apiType;
|
|
}
|
|
|
|
public String getParamsConfig(){
|
|
return this.paramsConfig;
|
|
}
|
|
|
|
public String getFieldControl(){
|
|
return this.fieldControl;
|
|
}
|
|
|
|
public int getCheckSourceType(){
|
|
return this.checkSourceType;
|
|
}
|
|
|
|
public String getCheckSource(){
|
|
return this.checkSource;
|
|
}
|
|
|
|
public String getContractDoc() {
|
|
return contractDoc;
|
|
}
|
|
|
|
public void setContractDoc(String contractDoc) {
|
|
this.contractDoc = contractDoc;
|
|
}
|
|
|
|
public int getSignedType() {
|
|
return signedType;
|
|
}
|
|
|
|
public void setSignedType(int signedType) {
|
|
this.signedType = signedType;
|
|
}
|
|
|
|
public String getFieldControl1() {
|
|
return fieldControl1;
|
|
}
|
|
|
|
public void setFieldControl1(String fieldControl1) {
|
|
this.fieldControl1 = fieldControl1;
|
|
}
|
|
|
|
public int getOnlyOwn() {
|
|
return onlyOwn;
|
|
}
|
|
|
|
public void setOnlyOwn(int onlyOwn) {
|
|
this.onlyOwn = onlyOwn;
|
|
}
|
|
|
|
public int getOnlyOther() {
|
|
return onlyOther;
|
|
}
|
|
|
|
public void setOnlyOther(int onlyOther) {
|
|
this.onlyOther = onlyOther;
|
|
}
|
|
|
|
public int getBothAll() {
|
|
return bothAll;
|
|
}
|
|
|
|
public void setBothAll(int bothAll) {
|
|
this.bothAll = bothAll;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "FaDaDaConfigDTO{" +
|
|
"id=" + id +
|
|
", workflowType=" + workflowType +
|
|
", apiType=" + apiType +
|
|
", paramsConfig='" + paramsConfig + '\'' +
|
|
", fieldControl='" + fieldControl + '\'' +
|
|
", checkSourceType=" + checkSourceType +
|
|
", checkSource='" + checkSource + '\'' +
|
|
", contractDoc='" + contractDoc + '\'' +
|
|
", signedType=" + signedType +
|
|
", fieldControl1='" + fieldControl1 + '\'' +
|
|
", onlyOwn=" + onlyOwn +
|
|
", onlyOther=" + onlyOther +
|
|
", bothAll=" + bothAll +
|
|
'}';
|
|
}
|
|
} |