From 47a458ca867f700ad8dfe8bccdbb6bf59ca2d301 Mon Sep 17 00:00:00 2001
From: zengh <123456>
Date: Tue, 11 May 2021 15:54:02 +0800
Subject: [PATCH] APP接口调整

---
 blade-service/blade-jfpts/src/main/java/org/springblade/jfpt/equipment/mapper/EquipmentMapper.xml |   47 ++++++++++++++++++++++++++++++++++++-----------
 1 files changed, 36 insertions(+), 11 deletions(-)

diff --git a/blade-service/blade-jfpts/src/main/java/org/springblade/jfpt/equipment/mapper/EquipmentMapper.xml b/blade-service/blade-jfpts/src/main/java/org/springblade/jfpt/equipment/mapper/EquipmentMapper.xml
index 7b8816d..3c57a77 100644
--- a/blade-service/blade-jfpts/src/main/java/org/springblade/jfpt/equipment/mapper/EquipmentMapper.xml
+++ b/blade-service/blade-jfpts/src/main/java/org/springblade/jfpt/equipment/mapper/EquipmentMapper.xml
@@ -160,19 +160,16 @@
         deviceNumber
         ) alarm ON alarm.deviceN = equipment.deviceNumber
         where 1=1
-
         <if test="equipment.deviceName!=null">
             and (deviceName like concat('%',#{equipment.deviceName},'%') or deviceNumber like
             concat('%',#{equipment.deviceName},'%'))
         </if>
-
         <if test="equipment.beginTime!=null and equipment.beginTime!=''">
             and expireTime&gt;=#{equipment.beginTime}
         </if>
         <if test="equipment.endTime!=null and equipment.endTime!=''">
             and expireTime&lt;=#{equipment.endTime}
         </if>
-
         <if test="equipment.district!=null">
             and district like concat('%',#{equipment.district},'%')
         </if>
@@ -185,31 +182,34 @@
         <if test="equipment.manufacturers!=null and equipment.manufacturers!=''">
             and manufacturers = #{equipment.manufacturers}
         </if>
-
         <if test="equipment.devicestate!=null">
             and devicestate =#{equipment.devicestate}
         </if>
-
         <if test="equipment.dtype!=null">
             and dtype=#{equipment.dtype}
         </if>
-
         <if test="dxtype!=null and dxtype == 0">
-            and heartbeat &lt; DATE_SUB(NOW(),INTERVAL 1 DAY)
+            and heartbeat &lt; DATE_SUB(NOW(),INTERVAL 1 DAY)  and dtype=0
         </if>
         <if test="dxtype!=null and dxtype == 1">
-            and heartbeat >= DATE_SUB(NOW(),INTERVAL 1 DAY)
+            and heartbeat >= DATE_SUB(NOW(),INTERVAL 1 DAY) and dtype=1
         </if>
         <if test="dxtype!=null and dxtype == 2">
-            and alarm.jtype IS NOT NULL
+            and heartbeat >= DATE_SUB(NOW(),INTERVAL 1 DAY) and dtype=2
         </if>
         <if test="dxtype!=null and dxtype == 3">
-            and heartbeat >= DATE_SUB(NOW(),INTERVAL 1 DAY) and state!=null
+            and heartbeat >= DATE_SUB(NOW(),INTERVAL 1 DAY)  and dtype=3
         </if>
         <if test="pid!=null and pid!=''">
             and deptId like concat('%',#{pid},'%')
         </if>
-
+        order by (
+            case
+                when dtype=2  then 1
+                when dtype=3 then 2
+                when dtype=0  then 3
+                when dtype=1  then 4
+            END)
     </select>
 
     <!--新增-->
@@ -478,4 +478,29 @@
     <select id="selectEqCg" resultType="Integer">
         select COUNT(*) from sys_equipment where heartbeat >= DATE_SUB(NOW(),INTERVAL 1 DAY) and dtype=3
     </select>
+
+    <!--查询所有的设备,不包含故障和警情状态-->
+    <select id="selAllEq" resultType="org.springblade.jfpt.equipment.entity.Equipment">
+       select id,dtype,heartbeat from sys_equipment where dtype!=2 and dtype!=3
+    </select>
+
+    <!--批量更新设备状态改为在线-->
+    <update id="updateEqListz" parameterType="java.util.Map">
+        UPDATE sys_equipment
+            SET dtype = 1
+        WHERE id IN
+        <foreach collection="equipmentListz" index="index" item="id" open="(" separator="," close=")">
+            #{id}
+        </foreach>
+    </update>
+
+    <!--批量更新设备状态改为离线-->
+    <update id="updateEqListl" parameterType="java.util.Map">
+        UPDATE sys_equipment
+            SET dtype = 0
+        WHERE id IN
+        <foreach collection="equipmentListl" index="index" item="id" open="(" separator="," close=")">
+            #{id}
+        </foreach>
+    </update>
 </mapper>

--
Gitblit v1.9.3