lodsve.workflow.domain.ProcessInstance Maven / Gradle / Ivy
/*
* Copyright (C) 2018 Sun.Hao
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package lodsve.workflow.domain;
import java.util.Date;
/**
* 流程实例.
*
* @author sunhao([email protected])
* @version V1.0, 16/4/15 下午4:12
*/
public class ProcessInstance {
/**
* 流程实例ID
*/
private Long id;
/**
* 流程ID
*/
private Long flowId;
/**
* 流程名
*/
private String flowTitle;
/**
* 资源Id,业务Id
*/
private Long resourceId;
/**
* 流程实例的title
*/
private String processTitle;
/**
* 发起人
*/
private Long startUserId;
/**
* 发起人姓名
*/
private String startUserName;
/**
* 当前节点id
*/
private Long currentNodeId;
/**
* 当前节点名
*/
private String currentNodeTitle;
/**
* 发起时间
*/
private Date startTime;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Long getFlowId() {
return flowId;
}
public void setFlowId(Long flowId) {
this.flowId = flowId;
}
public String getFlowTitle() {
return flowTitle;
}
public void setFlowTitle(String flowTitle) {
this.flowTitle = flowTitle;
}
public Long getResourceId() {
return resourceId;
}
public void setResourceId(Long resourceId) {
this.resourceId = resourceId;
}
public String getProcessTitle() {
return processTitle;
}
public void setProcessTitle(String processTitle) {
this.processTitle = processTitle;
}
public Long getStartUserId() {
return startUserId;
}
public void setStartUserId(Long startUserId) {
this.startUserId = startUserId;
}
public String getStartUserName() {
return startUserName;
}
public void setStartUserName(String startUserName) {
this.startUserName = startUserName;
}
public Long getCurrentNodeId() {
return currentNodeId;
}
public void setCurrentNodeId(Long currentNodeId) {
this.currentNodeId = currentNodeId;
}
public String getCurrentNodeTitle() {
return currentNodeTitle;
}
public void setCurrentNodeTitle(String currentNodeTitle) {
this.currentNodeTitle = currentNodeTitle;
}
public Date getStartTime() {
return startTime;
}
public void setStartTime(Date startTime) {
this.startTime = startTime;
}
}