package com.vci.client.workflow.template.object;
|
|
import java.io.Serializable;
|
|
public class FlowTaskObject implements Serializable {
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
private String id = "";
|
private String name = "";
|
private String createTime = "";
|
|
private FlowVariablesObject flowVariablesObject;
|
|
public String getId() {
|
return id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public String getCreateTime() {
|
return createTime;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public void setCreateTime(String createTime) {
|
this.createTime = createTime;
|
}
|
|
public FlowVariablesObject getFlowVariablesObject() {
|
return flowVariablesObject;
|
}
|
|
public void setFlowVariablesObject(FlowVariablesObject flowVariablesObject) {
|
this.flowVariablesObject = flowVariablesObject;
|
}
|
}
|