📄 decitionhandler.java
字号:
package com.xiangfeng.jbpm.ActionHandler;
import org.jbpm.graph.def.ActionHandler;
import org.jbpm.graph.exe.ExecutionContext;
import org.jbpm.graph.node.DecisionHandler;
import org.omg.PortableServer.portable.Delegate;
public class DecitionHandler implements DecisionHandler{
public String decide(ExecutionContext ctx) throws Exception {
String billNO= ctx.getProcessInstance().getKey();
System.out.println("------------- from decide billNO is "+billNO);
return "转交客服处理";
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -