From b29b4008fcc85a8184d30af44dab540d50a14698 Mon Sep 17 00:00:00 2001
From: xiangpei <xiangpei@timesnew.cn>
Date: 星期二, 08 四月 2025 14:03:14 +0800
Subject: [PATCH] 查询流程图中的历史任务去重、修改任务相关完善

---
 flowable/src/main/java/com/ycl/domain/entity/ProcessLog.java |    9 ++++++++-
 1 files changed, 8 insertions(+), 1 deletions(-)

diff --git a/flowable/src/main/java/com/ycl/domain/entity/ProcessLog.java b/flowable/src/main/java/com/ycl/domain/entity/ProcessLog.java
index 641ccad..246463a 100644
--- a/flowable/src/main/java/com/ycl/domain/entity/ProcessLog.java
+++ b/flowable/src/main/java/com/ycl/domain/entity/ProcessLog.java
@@ -22,13 +22,20 @@
     /** 浠诲姟id */
     private String taskId;
 
+    @TableField("task_def_key")
+    /** 浠诲姟key */
+    private String taskDefKey;
+
+    @TableField("task_name")
+    /** 浠诲姟鍚� */
+    private String taskName;
     @TableField("event_type")
     /** 浜嬩欢鏃ュ織绫诲瀷 */
     private ProcessLogEventTypeEnum eventType;
 
     @TableField("project_id")
     /** 椤圭洰id */
-    private Long projectId;
+    private String projectId;
 
     @TableField("process_ins_id")
     /** 娴佺▼瀹炰緥id */

--
Gitblit v1.8.0