package com.vci.server.workflow.objects;
|
|
import java.io.Serializable;
|
|
import com.vci.common.annotaion.CustomAnnotaion;
|
import com.vci.common.objects.AbstractHistorizable;
|
@CustomAnnotaion(CustomDescription = "流程对象")
|
public class FlowInstance extends AbstractHistorizable implements Serializable {
|
@CustomAnnotaion(CustomDescription = "ID",InToString = false)
|
private String id;
|
@CustomAnnotaion(CustomDescription = "执行ID",InToString = false)
|
private String executionid;
|
@CustomAnnotaion(CustomDescription = "发起人",InToString = false)
|
private String applicant;
|
@CustomAnnotaion(CustomDescription = "创建人",InToString = false)
|
private String creator;
|
@CustomAnnotaion(CustomDescription = "模板ID",InToString = false)
|
private String templatePuid;
|
@CustomAnnotaion(CustomDescription = "模板名称")
|
private String templateName;
|
@CustomAnnotaion(CustomDescription = "分类ID",InToString = false)
|
private String clsfOid;
|
@CustomAnnotaion(CustomDescription = "表名",InToString = false)
|
private String tableName;
|
@CustomAnnotaion(CustomDescription = "描述")
|
private String desc;
|
@CustomAnnotaion(CustomDescription = "流程类型",InToString = false)
|
private String processType;
|
private String processName;
|
|
//add by liud 2012-12-25
|
@CustomAnnotaion(CustomDescription = "任务类型",InToString = false)
|
private String taskType;
|
|
public String getTaskType() {
|
return taskType;
|
}
|
|
public void setTaskType(String taskType) {
|
this.taskType = taskType;
|
}
|
public String getProcessName() {
|
return processName;
|
}
|
|
public void setProcessName(String processName) {
|
this.processName = processName;
|
}
|
|
public FlowInstance() {
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getExecutionid() {
|
return executionid;
|
}
|
|
public void setExecutionid(String executionid) {
|
this.executionid = executionid;
|
}
|
|
public String getApplicant() {
|
return applicant;
|
}
|
|
public void setApplicant(String applicant) {
|
this.applicant = applicant;
|
}
|
|
public String getCreator() {
|
return creator;
|
}
|
|
public void setCreator(String creator) {
|
this.creator = creator;
|
}
|
|
public String getTemplatePuid() {
|
return templatePuid;
|
}
|
|
public void setTemplatePuid(String templatePuid) {
|
this.templatePuid = templatePuid;
|
}
|
|
public String getTemplateName() {
|
return templateName;
|
}
|
|
public void setTemplateName(String templateName) {
|
this.templateName = templateName;
|
}
|
|
public String getClsfOid() {
|
return clsfOid;
|
}
|
|
public void setClsfOid(String clsfOid) {
|
this.clsfOid = clsfOid;
|
}
|
|
public String getTableName() {
|
return tableName;
|
}
|
|
public void setTableName(String tableName) {
|
this.tableName = tableName;
|
}
|
|
public String getDesc() {
|
return desc;
|
}
|
|
public void setDesc(String desc) {
|
this.desc = desc;
|
}
|
|
public String getProcessType() {
|
return processType;
|
}
|
|
public void setProcessType(String processType) {
|
this.processType = processType;
|
}
|
|
}
|