From 1bfbc52da47b22f00a1c1f5f670c30f70d999873 Mon Sep 17 00:00:00 2001
From: linwei <872216696@qq.com>
Date: Mon, 02 Feb 2026 18:18:09 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'
---
drone-service/drone-fw/src/main/java/org/sxkj/fw/detection/mapper/FwEffectEvalMapper.xml | 37 +++++++++++++++++++++++++++++++++----
1 files changed, 33 insertions(+), 4 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 351921a..79969c8 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
@@ -3,11 +3,11 @@
<mapper namespace="org.sxkj.fw.detection.mapper.FwEffectEvalMapper">
<!-- 通用查询映射结果 -->
- <resultMap id="fwEffectEvalResultMap" type="org.sxkj.fw.detection.entity.FwEffectEvalEntity">
+ <resultMap id="fwEffectEvalResultMap" type="org.sxkj.fw.detection.vo.FwEffectEvalVO">
<result column="id" property="id"/>
<result column="alarm_record_id" property="alarmRecordId"/>
<result column="device_id" property="deviceId"/>
- <result column="device_code" property="deviceCode"/>
+ <result column="device_sn" property="deviceSn"/>
<result column="device_name" property="deviceName"/>
<result column="device_model" property="deviceModel"/>
<result column="device_type" property="deviceType"/>
@@ -27,12 +27,41 @@
<result column="update_user" property="updateUser"/>
<result column="update_time" property="updateTime"/>
<result column="status" property="status"/>
- <result column="is_deleted" property="isDeleted"/>
</resultMap>
<select id="selectFwEffectEvalPage" resultMap="fwEffectEvalResultMap">
- select * from ja_fw_effect_eval where is_deleted = 0
+ select
+ *
+ from
+ ja_fw_effect_eval
+ <where>
+ is_deleted = 0
+ <if test="param2.deviceName != null and param2.deviceName != ''">
+ and device_name like concat('%', #{param2.deviceName}, '%')
+ </if>
+ <if test="param2.deviceType != null and param2.deviceType != ''">
+ and device_type = #{param2.deviceType}
+ </if>
+ <if test="param2.counterEffect != null and param2.counterEffect != ''">
+ and counter_effect = #{param2.counterEffect}
+ </if>
+ <if test="param2.deptList != null and param2.deptList.size > 0">
+ and (create_dept in
+ <foreach collection="param2.deptList" item="deptId" open="(" separator="," close=")">
+ #{deptId}
+ </foreach>
+ <!-- 或者设备是共享给当前部门的 -->
+ <if test="param2.currentDeptId != null and param2.currentDeptId != '' ">
+ or 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>
+ </where>
</select>
--
Gitblit v1.9.3