Browse Source

安防感知 切换园区功能

zhouwang 2 days ago
parent
commit
8188aada72

+ 40 - 14
src/main/java/com/lqkj/info/entity/ElevatorInfo.java

@@ -7,7 +7,7 @@ import com.lqkj.common.core.model.BaseEntity;
7 7
 
8 8
 /**
9 9
  * 电梯信息对象 elevator_info
10
- * 
10
+ *
11 11
  * @author lqkj
12 12
  * @date 2024-11-12
13 13
  */
@@ -51,57 +51,67 @@ public class ElevatorInfo extends BaseEntity
51 51
     /** 连接状态 */
52 52
     private Integer connectStatus;
53 53
 
54
-    public void setElevatorId(Integer elevatorId) 
54
+    /**
55
+     * 电梯监控地址
56
+     */
57
+    private String elevatorUrl;
58
+
59
+    /**
60
+     * 园区id
61
+     */
62
+    private Integer parkId;
63
+
64
+    public void setElevatorId(Integer elevatorId)
55 65
     {
56 66
         this.elevatorId = elevatorId;
57 67
     }
58 68
 
59
-    public Integer getElevatorId() 
69
+    public Integer getElevatorId()
60 70
     {
61 71
         return elevatorId;
62 72
     }
63
-    public void setElevatorCode(String elevatorCode) 
73
+    public void setElevatorCode(String elevatorCode)
64 74
     {
65 75
         this.elevatorCode = elevatorCode;
66 76
     }
67 77
 
68
-    public String getElevatorCode() 
78
+    public String getElevatorCode()
69 79
     {
70 80
         return elevatorCode;
71 81
     }
72
-    public void setBuildingId(Integer buildingId) 
82
+    public void setBuildingId(Integer buildingId)
73 83
     {
74 84
         this.buildingId = buildingId;
75 85
     }
76 86
 
77
-    public Integer getBuildingId() 
87
+    public Integer getBuildingId()
78 88
     {
79 89
         return buildingId;
80 90
     }
81
-    public void setStatus(Integer status) 
91
+    public void setStatus(Integer status)
82 92
     {
83 93
         this.status = status;
84 94
     }
85 95
 
86
-    public Integer getStatus() 
96
+    public Integer getStatus()
87 97
     {
88 98
         return status;
89 99
     }
90
-    public void setElevatorName(String elevatorName) 
100
+    public void setElevatorName(String elevatorName)
91 101
     {
92 102
         this.elevatorName = elevatorName;
93 103
     }
94 104
 
95
-    public String getElevatorName() 
105
+    public String getElevatorName()
96 106
     {
97 107
         return elevatorName;
98 108
     }
99
-    public void setUpkeepNum(Integer upkeepNum) 
109
+    public void setUpkeepNum(Integer upkeepNum)
100 110
     {
101 111
         this.upkeepNum = upkeepNum;
102 112
     }
103 113
 
104
-    public Integer getUpkeepNum() 
114
+    public Integer getUpkeepNum()
105 115
     {
106 116
         return upkeepNum;
107 117
     }
@@ -138,6 +148,22 @@ public class ElevatorInfo extends BaseEntity
138 148
         this.connectStatus = connectStatus;
139 149
     }
140 150
 
151
+    public String getElevatorUrl() {
152
+        return elevatorUrl;
153
+    }
154
+
155
+    public void setElevatorUrl(String elevatorUrl) {
156
+        this.elevatorUrl = elevatorUrl;
157
+    }
158
+
159
+    public Integer getParkId() {
160
+        return parkId;
161
+    }
162
+
163
+    public void setParkId(Integer parkId) {
164
+        this.parkId = parkId;
165
+    }
166
+
141 167
     @Override
142 168
     public String toString() {
143 169
         return "ElevatorInfo{" +
@@ -153,4 +179,4 @@ public class ElevatorInfo extends BaseEntity
153 179
                 ", connectStatus=" + connectStatus +
154 180
                 '}';
155 181
     }
156
-}
182
+}

+ 6 - 6
src/main/java/com/lqkj/ioc/controller/SecurityPerceptionController.java

@@ -21,21 +21,21 @@ public class SecurityPerceptionController {
21 21
 
22 22
     @ApiOperation("智慧电梯-电梯基本情况")
23 23
     @GetMapping("/getElevatorBasicInfo")
24
-    public ResultUtil getElevatorBasicInfo(){
25
-        return ResultUtil.success(securityPerceptionService.getElevatorBasicInfo());
24
+    public ResultUtil getElevatorBasicInfo(Integer parkId){
25
+        return ResultUtil.success(securityPerceptionService.getElevatorBasicInfo( parkId));
26 26
     }
27 27
 
28 28
     @ApiOperation("智慧电梯-电梯维修统计")
29 29
     @GetMapping("/getElevatorRepairStats")
30
-    public ResultUtil getElevatorRepairStats(){
31
-        return ResultUtil.success(securityPerceptionService.getElevatorRepairStats());
30
+    public ResultUtil getElevatorRepairStats(Integer parkId){
31
+        return ResultUtil.success(securityPerceptionService.getElevatorRepairStats(parkId));
32 32
     }
33 33
 
34 34
 
35 35
     @ApiOperation("智慧电梯-电梯告警分布")
36 36
     @GetMapping("/elevatorAlarmDistribution")
37
-    public ResultUtil elevatorAlarmDistribution(){
38
-        return ResultUtil.success(securityPerceptionService.elevatorAlarmDistribution());
37
+    public ResultUtil elevatorAlarmDistribution(Integer parkId){
38
+        return ResultUtil.success(securityPerceptionService.elevatorAlarmDistribution(parkId));
39 39
     }
40 40
 
41 41
     @ApiOperation("停车场-充电桩使用品牌")

+ 12 - 6
src/main/java/com/lqkj/ioc/mapper/SecurityPerceptionMapper.java

@@ -15,21 +15,27 @@ public interface SecurityPerceptionMapper {
15 15
     @Select("SELECT sdd.dict_label, COUNT(ei.elevator_id) " +
16 16
             "FROM sys_dict_data sdd " +
17 17
             "LEFT JOIN elevator_info ei ON sdd.dict_value::integer = ei.type " +
18
-            "WHERE sdd.dict_type = 'elevator_type' GROUP BY sdd.dict_label"
18
+            "WHERE sdd.dict_type = 'elevator_type' " +
19
+            "AND CASE WHEN #{parkId} IS NOT NULL THEN ei.park_id = #{parkId} ELSE 1=1 END " +
20
+            " GROUP BY sdd.dict_label"
19 21
     )
20
-    List<Map<String, Object>> getElevatorBasicInfo();
22
+    List<Map<String, Object>> getElevatorBasicInfo(Integer parkId);
21 23
 
22 24
     @Select("SELECT sdd.dict_label, COUNT(ei.elevator_id) " +
23 25
             "FROM sys_dict_data sdd " +
24 26
             "LEFT JOIN elevator_info ei ON sdd.dict_value::integer = ei.status " +
25
-            "WHERE sdd.dict_type = 'elevator_info_status' GROUP BY sdd.dict_label")
26
-    List<Map<String, Object>> getElevatorRepairStats();
27
+            "WHERE sdd.dict_type = 'elevator_info_status' " +
28
+            "AND CASE WHEN #{parkId} IS NOT NULL THEN ei.park_id = #{parkId} ELSE 1=1 END " +
29
+            "GROUP BY sdd.dict_label")
30
+    List<Map<String, Object>> getElevatorRepairStats(Integer parkId);
27 31
 
28 32
     @Select("SELECT sdd.dict_label, COUNT(ei.elevator_id) " +
29 33
             "FROM sys_dict_data sdd " +
30 34
             "LEFT JOIN elevator_info ei ON sdd.dict_value::integer = ei.status " +
31
-            "WHERE sdd.dict_type = 'elevator_info_status' and sdd.dict_value IN ('3', '7', '8') GROUP BY sdd.dict_label")
32
-    List<Map<String, Object>> elevatorAlarmDistribution();
35
+            "WHERE sdd.dict_type = 'elevator_info_status' and sdd.dict_value IN ('3', '7', '8') " +
36
+            "AND CASE WHEN #{parkId} IS NOT NULL THEN ei.park_id = #{parkId} ELSE 1=1 END " +
37
+            "GROUP BY sdd.dict_label")
38
+    List<Map<String, Object>> elevatorAlarmDistribution(Integer parkId);
33 39
 
34 40
     @Select("SELECT sdd.dict_label, COUNT(ei.equipment_id) " +
35 41
             "FROM sys_dict_data sdd " +

+ 6 - 6
src/main/java/com/lqkj/ioc/service/SecurityPerceptionService.java

@@ -15,19 +15,19 @@ public class SecurityPerceptionService {
15 15
     private SecurityPerceptionMapper securityPerceptionMapper;
16 16
 
17 17
 
18
-    public List<Map<String, Object>> getElevatorBasicInfo() {
18
+    public List<Map<String, Object>> getElevatorBasicInfo(Integer parkId) {
19 19
 
20
-        return securityPerceptionMapper.getElevatorBasicInfo();
20
+        return securityPerceptionMapper.getElevatorBasicInfo(parkId);
21 21
     }
22 22
 
23
-    public List<Map<String, Object>> getElevatorRepairStats() {
23
+    public List<Map<String, Object>> getElevatorRepairStats(Integer parkId) {
24 24
 
25
-        return securityPerceptionMapper.getElevatorRepairStats();
25
+        return securityPerceptionMapper.getElevatorRepairStats(parkId);
26 26
     }
27 27
 
28
-    public List<Map<String, Object>> elevatorAlarmDistribution() {
28
+    public List<Map<String, Object>> elevatorAlarmDistribution(Integer parkId) {
29 29
 
30
-        return securityPerceptionMapper.elevatorAlarmDistribution();
30
+        return securityPerceptionMapper.elevatorAlarmDistribution(parkId);
31 31
     }
32 32
 
33 33
     public List<Map<String, Object>> countChargingStationBrands() {

+ 8 - 0
src/main/resources/db/migration/V1_16__20250402.sql

@@ -0,0 +1,8 @@
1
+ALTER TABLE elevator_info ADD COLUMN elevator_url VARCHAR(255);
2
+ALTER TABLE elevator_info ADD COLUMN park_id INT4;
3
+
4
+
5
+
6
+COMMENT ON COLUMN elevator_info.elevator_url IS '监控地址';
7
+COMMENT ON COLUMN elevator_info.park_id IS '园区';
8
+

+ 13 - 3
src/main/resources/mapper/info/ElevatorInfoMapper.xml

@@ -15,10 +15,13 @@
15 15
 		<result property="runFloor"    column="run_floors"    />
16 16
 		<result property="runTime"    column="run_time"    />
17 17
 		<result property="connectStatus"    column="connect_status"    />
18
+		<result property="elevatorUrl"    column="elevator_url"    />
19
+		<result property="parkId"    column="park_id"    />
20
+
18 21
 	</resultMap>
19 22
 
20 23
 	<sql id="selectElevatorInfoVo">
21
-		select elevator_id, elevator_code, building_id, status, elevator_name, upkeep_num, type, run_floors, run_time, connect_status from elevator_info
24
+		select elevator_id, elevator_code, building_id, status, elevator_name, upkeep_num, type, run_floors, run_time, connect_status, elevator_url, park_id from elevator_info
22 25
 	</sql>
23 26
 
24 27
 	<select id="selectElevatorInfoList" parameterType="ElevatorInfo" resultMap="ElevatorInfoResult">
@@ -32,6 +35,7 @@
32 35
 			<if test="runFloor != null and runFloor != ''"> and run_floors like concat('%', #{runFloor}, '%')</if>
33 36
 			<if test="runTime != null and runTime != ''"> and run_time like concat('%', #{runTime}, '%')</if>
34 37
 			<if test="connectStatus != null "> and connect_status = #{connectStatus}</if>
38
+			<if test="parkId != null"> and park_id = #{parkId}</if>
35 39
 		</where>
36 40
 		order by elevator_id
37 41
 
@@ -54,6 +58,8 @@
54 58
 		    <if test="runFloor != null and runFloor != ''">run_floors,</if>
55 59
 		    <if test="runTime != null and runTime != ''">run_time,</if>
56 60
 		    <if test="connectStatus != null">connect_status,</if>
61
+		    <if test="elevatorUrl != null and elevatorUrl != ''">elevator_url,</if>
62
+		    <if test="parkId != null">park_id,</if>
57 63
 		</trim>
58 64
 		<trim prefix="values (" suffix=")" suffixOverrides=",">
59 65
 			<if test="elevatorCode != null and elevatorCode != ''">#{elevatorCode},</if>
@@ -65,6 +71,8 @@
65 71
 		    <if test="runFloor != null and runFloor != ''">#{runFloor},</if>
66 72
 		    <if test="runTime != null and runTime != ''">#{runTime},</if>
67 73
 		    <if test="connectStatus != null">#{connectStatus},</if>
74
+			<if test="elevatorUrl != null and elevatorUrl != ''">#{elevatorUrl},</if>
75
+			<if test="parkId != null">#{parkId},</if>
68 76
 		</trim>
69 77
 	</insert>
70 78
 
@@ -79,7 +87,9 @@
79 87
 		    type = #{type},
80 88
 			run_floors = #{runFloor},
81 89
 		    run_time = #{runTime},
82
-		    connect_status = #{connectStatus}
90
+		    connect_status = #{connectStatus},
91
+		    elevator_url = #{elevatorUrl},
92
+			park_id = #{parkId}
83 93
 		</trim>
84 94
 		where elevator_id = #{elevatorId}
85 95
 	</update>
@@ -94,4 +104,4 @@
94 104
 			#{elevatorId}
95 105
 		</foreach>
96 106
 	</delete>
97
-</mapper>
107
+</mapper>