package aiyh.utils.entity; import java.util.List; public class ApiConfigMainDTO { private int id; private int workflowType; private String apiUrl; private String apiName; private List details; public List getDetails() { return details; } public void setDetails(List details) { this.details = details; } public void setId(int id){ this.id = id; } public void setWorkflowType(int workflowType){ this.workflowType = workflowType; } public void setApiUrl(String apiUrl){ this.apiUrl = apiUrl; } public void setApiName(String apiName){ this.apiName = apiName; } public int getId(){ return this.id; } public int getWorkflowType(){ return this.workflowType; } public String getApiUrl(){ return this.apiUrl; } public String getApiName(){ return this.apiName; } @Override public String toString() { return "ApiConfigMainDTO{" + "id=" + id + ", workflowType=" + workflowType + ", apiUrl='" + apiUrl + '\'' + ", apiName='" + apiName + '\'' + ", details=" + details + '}'; } }