package com.java110.dto.oaWorkflow;
|
|
import com.java110.dto.PageDto;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* @ClassName FloorDto
|
* @Description 工作流节点数据层封装
|
* @Author wuxw
|
* @Date 2019/4/24 8:52
|
* @Version 1.0
|
* add by wuxw 2019/4/24
|
**/
|
public class WorkflowStepStaffDto extends PageDto implements Serializable {
|
|
private String wssId;
|
private String stepId;
|
private String staffName;
|
private String communityId;
|
private String staffId;
|
private String staffRole;
|
private String flowType;
|
private String[] flowTypes;
|
|
|
private Date createTime;
|
|
private String statusCd = "0";
|
|
private String processDefinitionKey;
|
|
private String flowId;
|
|
|
public String getWssId() {
|
return wssId;
|
}
|
|
public void setWssId(String wssId) {
|
this.wssId = wssId;
|
}
|
|
public String getStepId() {
|
return stepId;
|
}
|
|
public void setStepId(String stepId) {
|
this.stepId = stepId;
|
}
|
|
public String getStaffName() {
|
return staffName;
|
}
|
|
public void setStaffName(String staffName) {
|
this.staffName = staffName;
|
}
|
|
public String getCommunityId() {
|
return communityId;
|
}
|
|
public void setCommunityId(String communityId) {
|
this.communityId = communityId;
|
}
|
|
public String getStaffId() {
|
return staffId;
|
}
|
|
public void setStaffId(String staffId) {
|
this.staffId = staffId;
|
}
|
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public String getStatusCd() {
|
return statusCd;
|
}
|
|
public void setStatusCd(String statusCd) {
|
this.statusCd = statusCd;
|
}
|
|
public String getStaffRole() {
|
return staffRole;
|
}
|
|
public void setStaffRole(String staffRole) {
|
this.staffRole = staffRole;
|
}
|
|
public String getFlowType() {
|
return flowType;
|
}
|
|
public void setFlowType(String flowType) {
|
this.flowType = flowType;
|
}
|
|
public String[] getFlowTypes() {
|
return flowTypes;
|
}
|
|
public void setFlowTypes(String[] flowTypes) {
|
this.flowTypes = flowTypes;
|
}
|
|
public String getProcessDefinitionKey() {
|
return processDefinitionKey;
|
}
|
|
public void setProcessDefinitionKey(String processDefinitionKey) {
|
this.processDefinitionKey = processDefinitionKey;
|
}
|
|
public String getFlowId() {
|
return flowId;
|
}
|
|
public void setFlowId(String flowId) {
|
this.flowId = flowId;
|
}
|
}
|