From 17e9ad4bbbbd0129e8da4dc0cfeee0028d7121e0 Mon Sep 17 00:00:00 2001
From: zxl <763096477@qq.com>
Date: 星期一, 24 二月 2025 17:40:23 +0800
Subject: [PATCH] 资金类型和重点分类多选

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

diff --git a/business/src/main/resources/mapper/ProjectProcessMapper.xml b/business/src/main/resources/mapper/ProjectProcessMapper.xml
index 91b3f6b..80450e4 100644
--- a/business/src/main/resources/mapper/ProjectProcessMapper.xml
+++ b/business/src/main/resources/mapper/ProjectProcessMapper.xml
@@ -18,8 +18,8 @@
 <!--        <result column="management_centralization" property="managementCentralization" />-->
         <result column="project_approval_type" property="projectApprovalType" />
         <result column="importance_type" property="importanceType" />
-        <result column="year" property="year" />
-        <result column="year_invest_amount" property="yearInvestAmount" />
+<!--        <result column="year" property="year" />-->
+<!--        <result column="year_invest_amount" property="yearInvestAmount" />-->
         <result column="create_project_time" property="createProjectTime" />
         <result column="plan_start_time" property="planStartTime" />
         <result column="plan_complete_time" property="planCompleteTime" />
@@ -84,4 +84,9 @@
                  INNER JOIN t_project_info PI ON PP.project_id = PI.id AND PI.deleted = 0 AND PP.process_ins_id = #{processInsId}
     </select>
 
+
+    <select id="getNormalInsIds" resultType="string">
+        SELECT TPP.process_ins_id FROM t_project_info TPI INNER JOIN t_project_process TPP ON TPI.id = TPP.project_id AND TPI.deleted = 0
+    </select>
+
 </mapper>

--
Gitblit v1.8.0