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; 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; } @Override public String toString() { return "FaDaDaConfigDTO{" + "id=" + id + ", workflowType=" + workflowType + ", apiType=" + apiType + ", paramsConfig='" + paramsConfig + '\'' + ", fieldControl='" + fieldControl + '\'' + ", checkSourceType=" + checkSourceType + ", checkSource='" + checkSource + '\'' + ", contractDoc='" + contractDoc + '\'' + '}'; } }