From 07c4ad96c75dc93b39e002feb19845219fede415 Mon Sep 17 00:00:00 2001
From: xiangpei <xiangpei@timesnew.cn>
Date: 星期五, 29 十一月 2024 16:49:09 +0800
Subject: [PATCH] 全部事项和待办事项查询功能完善

---
 business/src/main/resources/mapper/ProjectProcessMapper.xml |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/business/src/main/resources/mapper/ProjectProcessMapper.xml b/business/src/main/resources/mapper/ProjectProcessMapper.xml
index 5ce1bb6..ae53deb 100644
--- a/business/src/main/resources/mapper/ProjectProcessMapper.xml
+++ b/business/src/main/resources/mapper/ProjectProcessMapper.xml
@@ -37,7 +37,7 @@
         <result column="gmt_update_time" property="gmtUpdateTime" />
         <result column="update_by" property="updateBy" />
         <result column="create_by" property="createBy" />
-        <result column="flowable_process_id" property="flowableProcessId" />
+        <result column="process_def_id" property="processDefId" />
 <!--        <association property="id" column=""-->
     </resultMap>
 
@@ -47,7 +47,7 @@
     <select id="getById" resultMap="BaseResultMap">
         SELECT
             TPP.project_id,
-            TPP.flowable_process_id,
+            TPP.process_def_id,
             TPP.id
         FROM
             t_project_process TPP
@@ -59,7 +59,7 @@
     <select id="getPage" resultMap="BaseResultMap">
         SELECT
             PI.*,
-            TPP.flowable_process_id
+            TPP.process_def_id
         FROM
             t_project_info PI
                 LEFT JOIN t_project_process TPP ON TPP.project_id = PI.id AND TPP.deleted = 0 AND PI.deleted = 0

--
Gitblit v1.8.0