From 2236321be028e7b14ae163a3f3a45c79e9fb4dc7 Mon Sep 17 00:00:00 2001
From: fuliqi <fuliqi@qq.com>
Date: 星期三, 12 二月 2025 17:46:16 +0800
Subject: [PATCH] 新增储备项目直接审核通过
---
business/src/main/java/com/ycl/event/event/TaskLogEvent.java | 13 +++++++++++--
1 files changed, 11 insertions(+), 2 deletions(-)
diff --git a/business/src/main/java/com/ycl/event/event/TaskLogEvent.java b/business/src/main/java/com/ycl/event/event/TaskLogEvent.java
index 076c8dd..dc3e3a4 100644
--- a/business/src/main/java/com/ycl/event/event/TaskLogEvent.java
+++ b/business/src/main/java/com/ycl/event/event/TaskLogEvent.java
@@ -15,7 +15,14 @@
@Getter
@Setter
public class TaskLogEvent extends ApplicationEvent {
-
+ /**
+ * id
+ */
+ private Long id;
+ /**
+ * 鐢ㄦ埛id
+ */
+ private Long userId;
/**
* 椤圭洰id
*/
@@ -51,8 +58,10 @@
* @param taskId 浠诲姟id
* @param otherData 鍏跺畠鏁版嵁
*/
- public TaskLogEvent(Object source, Long projectId, String processInsId, String taskId, ProcessLogEventTypeEnum eventType, Object otherData) {
+ public TaskLogEvent(Object source,Long id,Long userId, Long projectId, String processInsId, String taskId, ProcessLogEventTypeEnum eventType, Object otherData) {
super(source);
+ this.id = id;
+ this.userId = userId;
this.projectId = projectId;
this.processInsId = processInsId;
this.eventType = eventType;
--
Gitblit v1.8.0