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

This commit is contained in:
AprilWind
2025-04-09 10:57:29 +08:00
parent 70aa14ecf8
commit b50904c6ff
5 changed files with 60 additions and 18 deletions

View File

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

View File

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