package cn.ksource.core.workflow;
|
|
public class WorkflowDealEntity {
|
/**
|
* 流程实例ID
|
*/
|
private String wfInstanceId;
|
|
/**
|
* 流程节点实例ID
|
*/
|
private String nodeInstanceId;
|
|
/**
|
* 处理人ID
|
*/
|
private String userId;
|
|
/**
|
* 处理人姓名
|
*/
|
private String userName;
|
|
/**
|
* 处理结果
|
*/
|
private Integer result;
|
|
/**
|
* 处理意见
|
*/
|
private String note;
|
|
/**
|
* 回退到的节点编号
|
*/
|
private String backNodeId;
|
|
public String getWfInstanceId() {
|
return wfInstanceId;
|
}
|
|
public void setWfInstanceId(String wfInstanceId) {
|
this.wfInstanceId = wfInstanceId;
|
}
|
|
public String getNodeInstanceId() {
|
return nodeInstanceId;
|
}
|
|
public void setNodeInstanceId(String nodeInstanceId) {
|
this.nodeInstanceId = nodeInstanceId;
|
}
|
|
public String getUserId() {
|
return userId;
|
}
|
|
public void setUserId(String userId) {
|
this.userId = userId;
|
}
|
|
public String getUserName() {
|
return userName;
|
}
|
|
public void setUserName(String userName) {
|
this.userName = userName;
|
}
|
|
public Integer getResult() {
|
return result;
|
}
|
|
public void setResult(Integer result) {
|
this.result = result;
|
}
|
|
public String getNote() {
|
return note;
|
}
|
|
public void setNote(String note) {
|
this.note = note;
|
}
|
|
public String getBackNodeId() {
|
return backNodeId;
|
}
|
|
public void setBackNodeId(String backNodeId) {
|
this.backNodeId = backNodeId;
|
}
|
|
|
}
|