package com.vci.dto;
|
|
/**
|
* 流程模板对象
|
* @author weidy
|
* @date 2021-2-12
|
*/
|
public class ProcessTemplateVO implements java.io.Serializable{
|
|
/**
|
* 序列化
|
*/
|
private static final long serialVersionUID = 3009194108520576444L;
|
|
/**
|
* 流程引擎里的部署主键
|
*/
|
private String deploymentId;
|
|
/**
|
* 流程的主键
|
*/
|
private String oid;
|
|
/**
|
* 流程的名称
|
*/
|
private String name;
|
|
/**
|
* 流程的key
|
*/
|
private String key;
|
|
/**
|
* 流程的版本
|
*/
|
private int version;
|
|
/**
|
* 流程分类的主键
|
*/
|
private String categroyOid ;
|
|
/**
|
* 任务的类型
|
*/
|
private String taskType ;
|
|
/**
|
* 流程定义的状态
|
*/
|
private String status ;
|
|
|
public String getDeploymentId() {
|
return deploymentId;
|
}
|
|
public void setDeploymentId(String deploymentId) {
|
this.deploymentId = deploymentId;
|
}
|
|
public String getOid() {
|
return oid;
|
}
|
|
public void setOid(String oid) {
|
this.oid = oid;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getKey() {
|
return key;
|
}
|
|
public void setKey(String key) {
|
this.key = key;
|
}
|
|
public int getVersion() {
|
return version;
|
}
|
|
public void setVersion(int version) {
|
this.version = version;
|
}
|
|
public String getCategroyOid() {
|
return categroyOid;
|
}
|
|
public void setCategroyOid(String categroyOid) {
|
this.categroyOid = categroyOid;
|
}
|
|
public String getTaskType() {
|
return taskType;
|
}
|
|
public void setTaskType(String taskType) {
|
this.taskType = taskType;
|
}
|
|
public String getStatus() {
|
return status;
|
}
|
|
public void setStatus(String status) {
|
this.status = status;
|
}
|
|
@Override
|
public String toString() {
|
return "ProcessTemplateVO{" +
|
"deploymentId='" + deploymentId + '\'' +
|
", oid='" + oid + '\'' +
|
", name='" + name + '\'' +
|
", key='" + key + '\'' +
|
", version=" + version +
|
", categroyOid='" + categroyOid + '\'' +
|
", taskType='" + taskType + '\'' +
|
", status='" + status + '\'' +
|
'}';
|
}
|
}
|