83 lines
1.6 KiB
Java
83 lines
1.6 KiB
Java
|
|
package com.api.aiyh_guijiu.pojo;
|
|
|
|
|
|
public class WorkflowBaseInfoDTO {
|
|
|
|
private int workflowid;
|
|
private int requestid;
|
|
private String requestnamenew;
|
|
private String workflowname;
|
|
private String creater;
|
|
private String createdate;
|
|
private String createtime;
|
|
|
|
public void setWorkflowid(int workflowid){
|
|
this.workflowid = workflowid;
|
|
}
|
|
|
|
public void setRequestid(int requestid){
|
|
this.requestid = requestid;
|
|
}
|
|
|
|
public void setRequestnamenew(String requestnamenew){
|
|
this.requestnamenew = requestnamenew;
|
|
}
|
|
|
|
public void setWorkflowname(String workflowname){
|
|
this.workflowname = workflowname;
|
|
}
|
|
|
|
public void setCreater(String creater){
|
|
this.creater = creater;
|
|
}
|
|
|
|
public void setCreatedate(String createdate){
|
|
this.createdate = createdate;
|
|
}
|
|
|
|
public void setCreatetime(String createtime){
|
|
this.createtime = createtime;
|
|
}
|
|
|
|
public int getWorkflowid(){
|
|
return this.workflowid;
|
|
}
|
|
|
|
public int getRequestid(){
|
|
return this.requestid;
|
|
}
|
|
|
|
public String getRequestnamenew(){
|
|
return this.requestnamenew;
|
|
}
|
|
|
|
public String getWorkflowname(){
|
|
return this.workflowname;
|
|
}
|
|
|
|
public String getCreater(){
|
|
return this.creater;
|
|
}
|
|
|
|
public String getCreatedate(){
|
|
return this.createdate;
|
|
}
|
|
|
|
public String getCreatetime(){
|
|
return this.createtime;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "WorkflowBaseInfoDTO{" +
|
|
"workflowid='" + workflowid + '\'' +
|
|
", requestid='" + requestid + '\'' +
|
|
", requestnamenew='" + requestnamenew + '\'' +
|
|
", workflowname='" + workflowname + '\'' +
|
|
", creater='" + creater + '\'' +
|
|
", createdate='" + createdate + '\'' +
|
|
", createtime='" + createtime + '\'' +
|
|
'}';
|
|
}
|
|
} |