From c9e9cd3df7f76aa164e83280680945bca5250451 Mon Sep 17 00:00:00 2001
From: xiangpei <xiangpei@timesnew.cn>
Date: 星期日, 02 三月 2025 17:20:46 +0800
Subject: [PATCH] 流程详情、办理时展示任务的特殊操作日志

---
 business/src/main/java/com/ycl/event/event/TaskLogEvent.java |    9 ++++++++-
 1 files changed, 8 insertions(+), 1 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 0a72952..85f8581 100644
--- a/business/src/main/java/com/ycl/event/event/TaskLogEvent.java
+++ b/business/src/main/java/com/ycl/event/event/TaskLogEvent.java
@@ -37,6 +37,12 @@
      * 浠诲姟id
      */
     private String taskId;
+
+    /**
+     * 浠诲姟key
+     */
+    private String taskDefKey;
+
     /**
      * 浠诲姟鍚�
      */
@@ -62,7 +68,7 @@
      * @param taskId 浠诲姟id
      * @param otherData 鍏跺畠鏁版嵁
      */
-    public TaskLogEvent(Object source,Long id,Long userId, Long projectId, String processInsId, String taskId, String taskName,ProcessLogEventTypeEnum eventType, Object otherData) {
+    public TaskLogEvent(Object source,Long id,Long userId, Long projectId, String processInsId, String taskId, String taskDefKey, String taskName,ProcessLogEventTypeEnum eventType, Object otherData) {
         super(source);
         this.id = id;
         this.userId = userId;
@@ -70,6 +76,7 @@
         this.processInsId = processInsId;
         this.eventType = eventType;
         this.taskId = taskId;
+        this.taskDefKey = taskDefKey;
         this.taskName = taskName;
         this.otherData = otherData;
     }

--
Gitblit v1.8.0