package com.vci.server.workflow.objects;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
import com.vci.common.objects.AbstractHistorizable;
|
|
public class ProcessTemplate implements Serializable {
|
|
private static final long serialVersionUID = 84832963302215090L;
|
|
private String id = "";
|
private String processCategoryId = "";
|
private long jbpmDeploymentId;
|
private Date createTime = new Date();// timestamp(6) not null, --创建时间
|
private String createUser = "";// not null, --创建者
|
private String status = "";//状态
|
|
public String getStatus() {
|
return status;
|
}
|
|
public void setStatus(String status) {
|
this.status = status;
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getProcessCategoryId() {
|
return processCategoryId;
|
}
|
|
public void setProcessCategoryId(String processCategoryId) {
|
this.processCategoryId = processCategoryId;
|
}
|
|
public long getJbpmDeploymentId() {
|
return jbpmDeploymentId;
|
}
|
|
public void setJbpmDeploymentId(long jbpmDeploymentId) {
|
this.jbpmDeploymentId = jbpmDeploymentId;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public String getCreateUser() {
|
return createUser;
|
}
|
|
public void setCreateUser(String createUser) {
|
this.createUser = createUser;
|
}
|
|
}
|