update 优化工作流流程监听增加节点信息

This commit is contained in:
AprilWind
2025-04-10 17:05:58 +08:00
parent 43f24051fe
commit 1102573da3
5 changed files with 60 additions and 29 deletions

View File

@@ -30,10 +30,20 @@ public class ProcessCreateTaskEvent extends RemoteApplicationEvent {
private String flowCode;
/**
* 审批节点编码
* 节点类型0开始节点 1中间节点 2结束节点 3互斥网关 4并行网关
*/
private Integer nodeType;
/**
* 流程节点编码
*/
private String nodeCode;
/**
* 流程节点名称
*/
private String nodeName;
/**
* 任务id
*/

View File

@@ -36,7 +36,22 @@ public class ProcessEvent extends RemoteApplicationEvent {
private String businessId;
/**
* 状态
* 节点类型0开始节点 1中间节点 2结束节点 3互斥网关 4并行网关
*/
private Integer nodeType;
/**
* 流程节点编码
*/
private String nodeCode;
/**
* 流程节点名称
*/
private String nodeName;
/**
* 流程状态
*/
private String status;