From 8c85bd0ceef4b1c7ba6c6b5a109d15c74d9e0176 Mon Sep 17 00:00:00 2001
From: peng <peng.com>
Date: 星期三, 01 四月 2026 14:14:06 +0800
Subject: [PATCH] 兼容postgresql
---
business/src/main/resources/mapper/ProjectInfoMapper.xml | 39 +++++++++++++++++++++++++--------------
1 files changed, 25 insertions(+), 14 deletions(-)
diff --git a/business/src/main/resources/mapper/ProjectInfoMapper.xml b/business/src/main/resources/mapper/ProjectInfoMapper.xml
index 36801ea..0f4c27e 100644
--- a/business/src/main/resources/mapper/ProjectInfoMapper.xml
+++ b/business/src/main/resources/mapper/ProjectInfoMapper.xml
@@ -108,14 +108,17 @@
d.dept_name as project_owner_unit_name
FROM
t_project_info TPI
- LEFT JOIN t_project_investment_funding TPIF ON TPI.id = TPIF.project_id and TPIF.deleted = 0
- LEFT JOIN t_project_investment_info TPII ON TPI.id = TPII.project_id and TPII.deleted = 0
- LEFT JOIN t_project_investment_policy_compliance TPIPC ON TPI.id = TPIPC.project_id and TPIPC.deleted = 0
- LEFT JOIN t_project_unit_registration_info TPURI ON TPI.id = TPURI.project_id and TPURI.deleted = 0
- LEFT JOIN t_project_process TPP ON TPI.id = TPP.project_id and TPP.deleted = 0
- LEFT JOIN sys_dept d ON d.dept_id = TPI.project_owner_unit
+ LEFT JOIN t_project_investment_funding TPIF ON CONCAT('', TPI.id) = CONCAT('', TPIF.project_id) and TPIF.deleted = 0
+ LEFT JOIN t_project_investment_info TPII ON CONCAT('', TPI.id) = CONCAT('', TPII.project_id) and TPII.deleted = 0
+ LEFT JOIN t_project_investment_policy_compliance TPIPC ON CONCAT('', TPI.id) = CONCAT('', TPIPC.project_id) and TPIPC.deleted = 0
+ LEFT JOIN t_project_unit_registration_info TPURI ON CONCAT('', TPI.id) = CONCAT('', TPURI.project_id) and TPURI.deleted = 0
+ LEFT JOIN t_project_process TPP ON CONCAT('', TPI.id) = CONCAT('', TPP.project_id) and TPP.deleted = 0
+ LEFT JOIN sys_dept d ON CONCAT('', d.dept_id) = TPI.project_owner_unit
<where>
TPI.deleted = 0
+ <if test="query.coding !=null and query.coding!=''">
+ and TPI.coding = #{query.coding}
+ </if>
<if test="query.projectName !=null and query.projectName!=''">
and TPI.project_name like concat('%',#{query.projectName},'%')
</if>
@@ -175,15 +178,23 @@
${query.params.dataScope}
</if>
</where>
- ORDER BY FIELD(TPI.used_status, 1, -1, 0, 2), TPI.gmt_create DESC
+ ORDER BY
+ CASE
+ WHEN TPI.used_status = 1 THEN 1
+ WHEN TPI.used_status = -1 THEN 2
+ WHEN TPI.used_status = 0 THEN 3
+ WHEN TPI.used_status = 2 THEN 4
+ ELSE 5
+ END,
+ TPI.gmt_create ASC
</select>
<select id="homeCount" parameterType="com.ycl.common.core.domain.BaseEntity" resultType="com.ycl.domain.vo.ProjectVO">
SELECT TPI.*,TPIF.total_investment,TPP.process_ins_id as processId
FROM t_project_info TPI
- LEFT JOIN t_project_investment_funding TPIF ON TPI.id = TPIF.project_id and TPIF.deleted = 0
- LEFT JOIN t_project_process TPP ON TPI.id = TPP.project_id and TPP.deleted = 0
- LEFT JOIN sys_dept d ON TPI.project_owner_unit = d.dept_id
+ LEFT JOIN t_project_investment_funding TPIF ON CONCAT('', TPI.id) = CONCAT('', TPIF.project_id) and TPIF.deleted = 0
+ LEFT JOIN t_project_process TPP ON CONCAT('', TPI.id) = CONCAT('', TPP.project_id) and TPP.deleted = 0
+ LEFT JOIN sys_dept d ON TPI.project_owner_unit = CONCAT('', d.dept_id)
<where>
TPI.deleted = 0 AND TPI.used_status = 2
${params.dataScope}
@@ -218,10 +229,10 @@
TPURI.legal_representative,TPURI.fixed_phone,TPURI.legal_person_idcard,TPURI.project_contact_person,TPURI.phone,TPURI.contact_idcard,
TPURI.wechat,TPURI.contact_address,TPURI.post_code,TPURI.email,TPURI.create_by,TPURI.update_by,TPURI.gmt_create,TPURI.gmt_update
from t_project_info TPI
- left join t_project_investment_funding TPIF on TPI.id = TPIF.project_id and TPIF.deleted = 0
- left join t_project_investment_info TPII on TPI.id = TPII.project_id and TPII.deleted = 0
- left join t_project_unit_registration_info TPURI on TPI.id = TPURI.project_id and TPURI.deleted = 0
- left join t_project_investment_policy_compliance TPIPC on TPI.id = TPIPC.project_id and TPIPC.deleted = 0
+ left join t_project_investment_funding TPIF on CONCAT('', TPI.id) = CONCAT('', TPIF.project_id) and TPIF.deleted = 0
+ left join t_project_investment_info TPII on CONCAT('', TPI.id) = CONCAT('', TPII.project_id) and TPII.deleted = 0
+ left join t_project_unit_registration_info TPURI on CONCAT('', TPI.id) = CONCAT('', TPURI.project_id) and TPURI.deleted = 0
+ left join t_project_investment_policy_compliance TPIPC on CONCAT('', TPI.id) = CONCAT('', TPIPC.project_id) and TPIPC.deleted = 0
<where>
TPI.deleted =0
<if test="dataIdList != null and dataIdList.size > 0">
--
Gitblit v1.8.0