From 74756c657109a4e48dd6c0b4d8959cdab89b33a9 Mon Sep 17 00:00:00 2001
From: xiebin <vip_xiaobin810@163.com>
Date: Wed, 28 Jan 2026 20:10:29 +0800
Subject: [PATCH] update-区域划分表结构调整
---
drone-service/drone-fw/src/main/java/org/sxkj/fw/detection/mapper/FwEffectEvalMapper.xml | 48 ++++++++++++++++++++++++++++++++++++++++++++++--
1 files changed, 46 insertions(+), 2 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 25ba045..8607c82 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,12 +3,56 @@
<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_sn" property="deviceSn"/>
+ <result column="device_name" property="deviceName"/>
+ <result column="device_model" property="deviceModel"/>
+ <result column="device_type" property="deviceType"/>
+ <result column="drone_name" property="droneName"/>
+ <result column="drone_type" property="droneType"/>
+ <result column="drone_device_code" property="droneDeviceCode"/>
+ <result column="find_time" property="findTime"/>
+ <result column="counter_effect" property="counterEffect"/>
+ <result column="deploy_longitude" property="deployLongitude"/>
+ <result column="deploy_latitude" property="deployLatitude"/>
+ <result column="cover_radius_m" property="coverRadiusM"/>
+ <result column="work_mode" property="workMode"/>
+ <result column="area_code" property="areaCode"/>
+ <result column="create_user" property="createUser"/>
+ <result column="create_dept" property="createDept"/>
+ <result column="create_time" property="createTime"/>
+ <result column="update_user" property="updateUser"/>
+ <result column="update_time" property="updateTime"/>
+ <result column="status" property="status"/>
</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>
+ </where>
</select>
--
Gitblit v1.9.3