📄 nodertprocess.java
字号:
package cn.myapps.core.workflow.storage.runtime.ejb;
import java.util.Collection;
import cn.myapps.base.ejb.BaseProcess;
import cn.myapps.core.user.action.WebUser;
import cn.myapps.core.workflow.element.AutoNode;
import cn.myapps.core.workflow.element.ManualNode;
import cn.myapps.core.workflow.element.Node;
import cn.myapps.core.workflow.element.StartNode;
import cn.myapps.core.workflow.element.SuspendNode;
import cn.myapps.core.workflow.storage.definition.ejb.BillDefiVO;
public interface NodeRTProcess extends BaseProcess {
public abstract NodeRT doCreate(String docid, BillDefiVO flowVO, Node node) throws Exception;
public abstract NodeRT doCreate(String docid, BillDefiVO flowVO, Node node, WebUser webUser) throws Exception;
public abstract Collection queryNodeRTByDocidAndFlowid(String docid, String flowid) throws Exception;
public abstract NodeRT doView(String docid, String flowid, WebUser user) throws Exception;
public abstract Collection doQuery(String docid, String flowid) throws Exception;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -