From 8585b431e9257333413358eb37c30ae58f74db76 Mon Sep 17 00:00:00 2001
From: linwei <872216696@qq.com>
Date: Thu, 13 Aug 2026 15:46:10 +0800
Subject: [PATCH] refactor(database): 优化数据库查询中的字段映射

---
 drone-service/drone-fw/src/main/java/org/sxkj/fw/detection/mapper/FwEffectEvalMapper.xml |   29 +++++++++++++++++++++--------
 1 files changed, 21 insertions(+), 8 deletions(-)

diff --git a/drone-service/drone-fw/src/main/java/org/sxkj/fw/detection/mapper/FwEffectEvalMapper.xml b/drone-service/drone-fw/src/main/java/org/sxkj/fw/detection/mapper/FwEffectEvalMapper.xml
index 8607c82..d024733 100644
--- a/drone-service/drone-fw/src/main/java/org/sxkj/fw/detection/mapper/FwEffectEvalMapper.xml
+++ b/drone-service/drone-fw/src/main/java/org/sxkj/fw/detection/mapper/FwEffectEvalMapper.xml
@@ -32,26 +32,39 @@
 
     <select id="selectFwEffectEvalPage" resultMap="fwEffectEvalResultMap">
         select
-            *
-        from
-            ja_fw_effect_eval
+        ee.*,
+        string_agg(distinct ad.area_name, ',') as area_name,
+        string_agg(distinct ds.scene_name, ',') as scene_name
+        from ja_fw_effect_eval ee
+        left join ja_fw_area_divide ad on ee.device_id = ANY(string_to_array(ad.device_ids, ',')::bigint[]) and ad.is_deleted = 0
+        left join ja_fw_defense_scene ds on ad.id = ANY(string_to_array(ds.area_divide_ids, ',')::bigint[]) and ds.is_deleted = 0
         <where>
-            is_deleted = 0
+                ee.is_deleted = 0
             <if test="param2.deviceName != null and param2.deviceName != ''">
-                and device_name like concat('%', #{param2.deviceName}, '%')
+                and ee.device_name like concat('%', #{param2.deviceName}, '%')
             </if>
             <if test="param2.deviceType != null and param2.deviceType != ''">
-                and device_type = #{param2.deviceType}
+                and ee.device_type = #{param2.deviceType}
             </if>
             <if test="param2.counterEffect != null and param2.counterEffect != ''">
-                and counter_effect = #{param2.counterEffect}
+                and ee.counter_effect = #{param2.counterEffect}
             </if>
             <if test="param2.deptList != null and param2.deptList.size > 0">
-                and create_dept in
+                and (ee.create_dept in
                 <foreach collection="param2.deptList" item="deptId" open="(" separator="," close=")">
                     #{deptId}
                 </foreach>
+                <!-- 或者设备是共享给当前部门的 -->
+                <if test="param2.currentDeptId != null and param2.currentDeptId != '' ">
+                    or ee.device_id in (
+                    SELECT device_id FROM ja_fw_device_per_share
+                    WHERE loan_to_dept_id = #{param2.currentDeptId}
+                    AND is_deleted = 0
+                    )
+                </if>
+                )
             </if>
+            group by ee.id  -- 按主表主键分组
         </where>
     </select>
 

--
Gitblit v1.9.3