Parcourir la source

2025-02-19日需求开发对应接口

zhouwang il y a 1 mois
Parent
commit
9ce269231f

+ 37 - 20
src/main/java/com/lqkj/info/entity/EquipmentInfo.java

@@ -1,13 +1,16 @@
1
 package com.lqkj.info.entity;
1
 package com.lqkj.info.entity;
2
 
2
 
3
+import com.fasterxml.jackson.annotation.JsonFormat;
3
 import org.apache.commons.lang3.builder.ToStringBuilder;
4
 import org.apache.commons.lang3.builder.ToStringBuilder;
4
 import org.apache.commons.lang3.builder.ToStringStyle;
5
 import org.apache.commons.lang3.builder.ToStringStyle;
5
 import com.lqkj.common.annotation.Excel;
6
 import com.lqkj.common.annotation.Excel;
6
 import com.lqkj.common.core.model.BaseEntity;
7
 import com.lqkj.common.core.model.BaseEntity;
7
 
8
 
9
+import java.time.LocalDateTime;
10
+
8
 /**
11
 /**
9
  * 设备信息对象 equipment_info
12
  * 设备信息对象 equipment_info
10
- * 
13
+ *
11
  * @author lqkj
14
  * @author lqkj
12
  * @date 2024-11-12
15
  * @date 2024-11-12
13
  */
16
  */
@@ -65,61 +68,67 @@ public class EquipmentInfo extends BaseEntity
65
     /** 园区id */
68
     /** 园区id */
66
     private Integer parkId;
69
     private Integer parkId;
67
 
70
 
68
-    public void setEquipmentId(Integer equipmentId) 
71
+    /**
72
+     * 告警时间
73
+     */
74
+    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss" ,timezone="GMT+8")
75
+    private LocalDateTime warningTime;
76
+
77
+    public void setEquipmentId(Integer equipmentId)
69
     {
78
     {
70
         this.equipmentId = equipmentId;
79
         this.equipmentId = equipmentId;
71
     }
80
     }
72
 
81
 
73
-    public Integer getEquipmentId() 
82
+    public Integer getEquipmentId()
74
     {
83
     {
75
         return equipmentId;
84
         return equipmentId;
76
     }
85
     }
77
-    public void setTypeId(Integer typeId) 
86
+    public void setTypeId(Integer typeId)
78
     {
87
     {
79
         this.typeId = typeId;
88
         this.typeId = typeId;
80
     }
89
     }
81
 
90
 
82
-    public Integer getTypeId() 
91
+    public Integer getTypeId()
83
     {
92
     {
84
         return typeId;
93
         return typeId;
85
     }
94
     }
86
-    public void setRoomId(Integer roomId) 
95
+    public void setRoomId(Integer roomId)
87
     {
96
     {
88
         this.roomId = roomId;
97
         this.roomId = roomId;
89
     }
98
     }
90
 
99
 
91
-    public Integer getRoomId() 
100
+    public Integer getRoomId()
92
     {
101
     {
93
         return roomId;
102
         return roomId;
94
     }
103
     }
95
-    public void setBuildingId(Integer buildingId) 
104
+    public void setBuildingId(Integer buildingId)
96
     {
105
     {
97
         this.buildingId = buildingId;
106
         this.buildingId = buildingId;
98
     }
107
     }
99
 
108
 
100
-    public Integer getBuildingId() 
109
+    public Integer getBuildingId()
101
     {
110
     {
102
         return buildingId;
111
         return buildingId;
103
     }
112
     }
104
-    public void setAreaId(Integer areaId) 
113
+    public void setAreaId(Integer areaId)
105
     {
114
     {
106
         this.areaId = areaId;
115
         this.areaId = areaId;
107
     }
116
     }
108
 
117
 
109
-    public Integer getAreaId() 
118
+    public Integer getAreaId()
110
     {
119
     {
111
         return areaId;
120
         return areaId;
112
     }
121
     }
113
-    public void setEquipmentName(String equipmentName) 
122
+    public void setEquipmentName(String equipmentName)
114
     {
123
     {
115
         this.equipmentName = equipmentName;
124
         this.equipmentName = equipmentName;
116
     }
125
     }
117
 
126
 
118
-    public String getEquipmentName() 
127
+    public String getEquipmentName()
119
     {
128
     {
120
         return equipmentName;
129
         return equipmentName;
121
     }
130
     }
122
-    public void setLngLat(String lngLat) 
131
+    public void setLngLat(String lngLat)
123
     {
132
     {
124
         this.lngLat = lngLat;
133
         this.lngLat = lngLat;
125
     }
134
     }
@@ -128,7 +137,7 @@ public class EquipmentInfo extends BaseEntity
128
     {
137
     {
129
         return lngLat;
138
         return lngLat;
130
     }
139
     }
131
-    public void setRasterLngLat(String rasterLngLat) 
140
+    public void setRasterLngLat(String rasterLngLat)
132
     {
141
     {
133
         this.rasterLngLat = rasterLngLat;
142
         this.rasterLngLat = rasterLngLat;
134
     }
143
     }
@@ -137,21 +146,21 @@ public class EquipmentInfo extends BaseEntity
137
     {
146
     {
138
         return rasterLngLat;
147
         return rasterLngLat;
139
     }
148
     }
140
-    public void setTypeName(String typeName) 
149
+    public void setTypeName(String typeName)
141
     {
150
     {
142
         this.typeName = typeName;
151
         this.typeName = typeName;
143
     }
152
     }
144
 
153
 
145
-    public String getTypeName() 
154
+    public String getTypeName()
146
     {
155
     {
147
         return typeName;
156
         return typeName;
148
     }
157
     }
149
-    public void setStatus(Integer status) 
158
+    public void setStatus(Integer status)
150
     {
159
     {
151
         this.status = status;
160
         this.status = status;
152
     }
161
     }
153
 
162
 
154
-    public Integer getStatus() 
163
+    public Integer getStatus()
155
     {
164
     {
156
         return status;
165
         return status;
157
     }
166
     }
@@ -188,6 +197,14 @@ public class EquipmentInfo extends BaseEntity
188
         this.parkId = parkId;
197
         this.parkId = parkId;
189
     }
198
     }
190
 
199
 
200
+    public LocalDateTime getWarningTime() {
201
+        return warningTime;
202
+    }
203
+
204
+    public void setWarningTime(LocalDateTime warningTime) {
205
+        this.warningTime = warningTime;
206
+    }
207
+
191
     @Override
208
     @Override
192
     public String toString() {
209
     public String toString() {
193
         return "EquipmentInfo{" +
210
         return "EquipmentInfo{" +
@@ -207,4 +224,4 @@ public class EquipmentInfo extends BaseEntity
207
                 ", parkId=" + parkId +
224
                 ", parkId=" + parkId +
208
                 '}';
225
                 '}';
209
     }
226
     }
210
-}
227
+}

+ 10 - 1
src/main/java/com/lqkj/ioc/controller/SmartParkController.java

@@ -2,6 +2,8 @@ package com.lqkj.ioc.controller;
2
 
2
 
3
 
3
 
4
 import com.lqkj.common.core.model.ResultUtil;
4
 import com.lqkj.common.core.model.ResultUtil;
5
+import com.lqkj.info.entity.EquipmentInfo;
6
+import com.lqkj.info.service.EquipmentInfoService;
5
 import com.lqkj.ioc.service.SmartParkService;
7
 import com.lqkj.ioc.service.SmartParkService;
6
 import io.swagger.annotations.Api;
8
 import io.swagger.annotations.Api;
7
 import io.swagger.annotations.ApiOperation;
9
 import io.swagger.annotations.ApiOperation;
@@ -18,7 +20,8 @@ public class SmartParkController {
18
 
20
 
19
     @Autowired
21
     @Autowired
20
     private SmartParkService smartParkService;
22
     private SmartParkService smartParkService;
21
-
23
+    @Autowired
24
+    private EquipmentInfoService equipmentInfoService;
22
 
25
 
23
     @ApiOperation("智慧园区-园区新增入驻情况")
26
     @ApiOperation("智慧园区-园区新增入驻情况")
24
     @GetMapping("/addParkNewTenant/{parkId}")
27
     @GetMapping("/addParkNewTenant/{parkId}")
@@ -32,4 +35,10 @@ public class SmartParkController {
32
     public ResultUtil getParkFireProtectionInfo(@PathVariable("parkId") Integer parkId){
35
     public ResultUtil getParkFireProtectionInfo(@PathVariable("parkId") Integer parkId){
33
         return ResultUtil.success(smartParkService.getParkFireProtectionInfo(parkId));
36
         return ResultUtil.success(smartParkService.getParkFireProtectionInfo(parkId));
34
     }
37
     }
38
+
39
+    @ApiOperation("智慧园区-设备管理-设备清单")
40
+    @GetMapping("/device/list")
41
+    public ResultUtil getParkFireProtectionInfo(EquipmentInfo equipmentInfo){
42
+        return ResultUtil.success(equipmentInfoService.selectEquipmentInfoList(equipmentInfo));
43
+    }
35
 }
44
 }

+ 4 - 0
src/main/resources/db/migration/V1_13__20250225.sql

@@ -0,0 +1,4 @@
1
+ALTER TABLE equipment_info
2
+    ADD COLUMN warning_time timestamp;
3
+
4
+COMMENT ON COLUMN equipment_info.warning_time is '告警时间';

+ 6 - 2
src/main/resources/mapper/info/EquipmentInfoMapper.xml

@@ -19,10 +19,11 @@
19
 		<result property="deviceStatus"    column="device_status"    />
19
 		<result property="deviceStatus"    column="device_status"    />
20
 		<result property="brand" column="brand"/>
20
 		<result property="brand" column="brand"/>
21
 		<result property="parkId"	column="park_id"/>
21
 		<result property="parkId"	column="park_id"/>
22
+		<result property="warningTime"    column="warning_time"    />
22
 	</resultMap>
23
 	</resultMap>
23
 
24
 
24
 	<sql id="selectEquipmentInfoVo">
25
 	<sql id="selectEquipmentInfoVo">
25
-		select equipment_id, type_id, room_id, building_id, area_id, equipment_name, lng_lat, raster_lng_lat, type_name, status, equip_code, device_status, brand, park_id from equipment_info
26
+		select equipment_id, type_id, room_id, building_id, area_id, equipment_name, lng_lat, raster_lng_lat, type_name, status, equip_code, device_status, brand, park_id,warning_time from equipment_info
26
 	</sql>
27
 	</sql>
27
 
28
 
28
 	<select id="selectEquipmentInfoList" parameterType="EquipmentInfo" resultMap="EquipmentInfoResult">
29
 	<select id="selectEquipmentInfoList" parameterType="EquipmentInfo" resultMap="EquipmentInfoResult">
@@ -61,6 +62,7 @@
61
 		    <if test="deviceStatus != null">device_status,</if>
62
 		    <if test="deviceStatus != null">device_status,</if>
62
 		    <if test="brand != null">brand,</if>
63
 		    <if test="brand != null">brand,</if>
63
 		    <if test="parkId != null">park_id,</if>
64
 		    <if test="parkId != null">park_id,</if>
65
+		    <if test="warningTime != null">warning_time,</if>
64
 		</trim>
66
 		</trim>
65
 		<trim prefix="values (" suffix=")" suffixOverrides=",">
67
 		<trim prefix="values (" suffix=")" suffixOverrides=",">
66
 			<if test="typeId != null">#{typeId},</if>
68
 			<if test="typeId != null">#{typeId},</if>
@@ -76,6 +78,7 @@
76
 		    <if test="deviceStatus != null">#{deviceStatus},</if>
78
 		    <if test="deviceStatus != null">#{deviceStatus},</if>
77
 		    <if test="brand != null">#{brand},</if>
79
 		    <if test="brand != null">#{brand},</if>
78
 		    <if test="parkId != null">#{parkId},</if>
80
 		    <if test="parkId != null">#{parkId},</if>
81
+			<if test="warningTime != null">#{warningTime},</if>
79
 		</trim>
82
 		</trim>
80
 	</insert>
83
 	</insert>
81
 
84
 
@@ -95,6 +98,7 @@
95
 		    device_status = #{deviceStatus},
98
 		    device_status = #{deviceStatus},
96
 		    brand = #{brand},
99
 		    brand = #{brand},
97
 		    park_id = #{parkId}
100
 		    park_id = #{parkId}
101
+		    <if test="warningTime != null">,warning_time = #{warningTime}</if>
98
 		</trim>
102
 		</trim>
99
 		where equipment_id = #{equipmentId}
103
 		where equipment_id = #{equipmentId}
100
 	</update>
104
 	</update>
@@ -109,4 +113,4 @@
109
 			#{equipmentId}
113
 			#{equipmentId}
110
 		</foreach>
114
 		</foreach>
111
 	</delete>
115
 	</delete>
112
-</mapper>
116
+</mapper>