package com.vci.pagemodel;
|
|
import java.util.ArrayList;
|
import java.util.List;
|
|
/**
|
* 流程中的任务节点
|
* @author weidy
|
* @date 2021-2-12
|
*/
|
public class ProcessNodeVO implements java.io.Serializable{
|
|
/**
|
* 序列化
|
*/
|
private static final long serialVersionUID = -4005702273457144329L;
|
|
/**
|
* 节点的名称
|
*/
|
private String name;
|
|
/**
|
* 用户名
|
*/
|
private String users;
|
|
/**
|
* 角色
|
*/
|
private String roles;
|
|
/**
|
* 部门
|
*/
|
private String depts;
|
|
/**
|
* 自定义
|
*/
|
private String customClass;
|
|
/**
|
* 用户的信息
|
*/
|
private List<ProcessUserVO> processUserVO = new ArrayList<ProcessUserVO>();
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
|
|
public String getUsers() {
|
return users;
|
}
|
|
public void setUsers(String users) {
|
this.users = users;
|
}
|
|
public String getRoles() {
|
return roles;
|
}
|
|
public void setRoles(String roles) {
|
this.roles = roles;
|
}
|
|
public String getDepts() {
|
return depts;
|
}
|
|
public void setDepts(String depts) {
|
this.depts = depts;
|
}
|
|
public List<ProcessUserVO> getProcessUserVO() {
|
return processUserVO;
|
}
|
|
public void setProcessUserVO(List<ProcessUserVO> processUserVO) {
|
this.processUserVO = processUserVO;
|
}
|
|
public String getCustomClass() {
|
return customClass;
|
}
|
|
public void setCustomClass(String customClass) {
|
this.customClass = customClass;
|
}
|
|
@Override
|
public String toString() {
|
return "ProcessNodeVO{" +
|
"name='" + name + '\'' +
|
", users='" + users + '\'' +
|
", roles='" + roles + '\'' +
|
", depts='" + depts + '\'' +
|
", customClass='" + customClass + '\'' +
|
", processUserVO=" + processUserVO +
|
'}';
|
}
|
}
|