From 4c1dbe97fda6634817db662c84a18057ea7c488b Mon Sep 17 00:00:00 2001
From: zhanghua <314079846@qq.com>
Date: 星期三, 27 十一月 2024 21:47:34 +0800
Subject: [PATCH] 审核消息

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

diff --git a/business/src/main/resources/mapper/ProjectProcessMapper.xml b/business/src/main/resources/mapper/ProjectProcessMapper.xml
index 0b2fc68..2e19f42 100644
--- a/business/src/main/resources/mapper/ProjectProcessMapper.xml
+++ b/business/src/main/resources/mapper/ProjectProcessMapper.xml
@@ -14,9 +14,9 @@
         <result column="invest_type" property="investType" />
         <result column="project_phase" property="projectPhase" />
         <result column="tag" property="tag" />
-        <result column="competent_department" property="competentDepartment" />
+<!--        <result column="competent_department" property="competentDepartment" />-->
         <result column="area_code" property="areaCode" />
-        <result column="management_centralization" property="managementCentralization" />
+<!--        <result column="management_centralization" property="managementCentralization" />-->
         <result column="project_approval_type" property="projectApprovalType" />
         <result column="investment_catalogue" property="investmentCatalogue" />
         <result column="importance_type" property="importanceType" />
@@ -65,8 +65,8 @@
             PI.*,
             TPP.flowable_process_id
         FROM
-            t_project_process TPP
-                INNER JOIN t_project_info PI ON TPP.project_id = PI.id AND TPP.deleted = 0 AND PI.deleted = 0
+            t_project_info PI
+                LEFT JOIN t_project_process TPP ON TPP.project_id = PI.id AND TPP.deleted = 0 AND PI.deleted = 0
         <where>
             <if test="query.projectName != null and query.projectName != ''">
                 AND PI.project_name like concat('%', #{query.projectName}, '%')

--
Gitblit v1.8.0