From 6e22eee1db782ccd72caecce9491f357e8cadf46 Mon Sep 17 00:00:00 2001
From: xiangpei <xiangpei@timesnew.cn>
Date: 星期五, 03 一月 2025 15:09:42 +0800
Subject: [PATCH] 剩余事项统计逻辑优化

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

diff --git a/business/src/main/resources/mapper/ProjectProcessMapper.xml b/business/src/main/resources/mapper/ProjectProcessMapper.xml
index ae53deb..7fe3996 100644
--- a/business/src/main/resources/mapper/ProjectProcessMapper.xml
+++ b/business/src/main/resources/mapper/ProjectProcessMapper.xml
@@ -38,6 +38,7 @@
         <result column="update_by" property="updateBy" />
         <result column="create_by" property="createBy" />
         <result column="process_def_id" property="processDefId" />
+        <result column="process_ins_id" property="processInsId" />
 <!--        <association property="id" column=""-->
     </resultMap>
 
@@ -59,7 +60,8 @@
     <select id="getPage" resultMap="BaseResultMap">
         SELECT
             PI.*,
-            TPP.process_def_id
+            TPP.process_def_id,
+            TPP.process_ins_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