Преглед на файлове

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

zhouwang преди 1 месец
родител
ревизия
9ce269231f

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

@@ -1,13 +1,16 @@
1 1
 package com.lqkj.info.entity;
2 2
 
3
+import com.fasterxml.jackson.annotation.JsonFormat;
3 4
 import org.apache.commons.lang3.builder.ToStringBuilder;
4 5
 import org.apache.commons.lang3.builder.ToStringStyle;
5 6
 import com.lqkj.common.annotation.Excel;
6 7
 import com.lqkj.common.core.model.BaseEntity;
7 8
 
9
+import java.time.LocalDateTime;
10
+
8 11
 /**
9 12
  * 设备信息对象 equipment_info
10
- * 
13
+ *
11 14
  * @author lqkj
12 15
  * @date 2024-11-12
13 16
  */
@@ -65,61 +68,67 @@ public class EquipmentInfo extends BaseEntity
65 68
     /** 园区id */
66 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 79
         this.equipmentId = equipmentId;
71 80
     }
72 81
 
73
-    public Integer getEquipmentId() 
82
+    public Integer getEquipmentId()
74 83
     {
75 84
         return equipmentId;
76 85
     }
77
-    public void setTypeId(Integer typeId) 
86
+    public void setTypeId(Integer typeId)
78 87
     {
79 88
         this.typeId = typeId;
80 89
     }
81 90
 
82
-    public Integer getTypeId() 
91
+    public Integer getTypeId()
83 92
     {
84 93
         return typeId;
85 94
     }
86
-    public void setRoomId(Integer roomId) 
95
+    public void setRoomId(Integer roomId)
87 96
     {
88 97
         this.roomId = roomId;
89 98
     }
90 99
 
91
-    public Integer getRoomId() 
100
+    public Integer getRoomId()
92 101
     {
93 102
         return roomId;
94 103
     }
95
-    public void setBuildingId(Integer buildingId) 
104
+    public void setBuildingId(Integer buildingId)
96 105
     {
97 106
         this.buildingId = buildingId;
98 107
     }
99 108
 
100
-    public Integer getBuildingId() 
109
+    public Integer getBuildingId()
101 110
     {
102 111
         return buildingId;
103 112
     }
104
-    public void setAreaId(Integer areaId) 
113
+    public void setAreaId(Integer areaId)
105 114
     {
106 115
         this.areaId = areaId;
107 116
     }
108 117
 
109
-    public Integer getAreaId() 
118
+    public Integer getAreaId()
110 119
     {
111 120
         return areaId;
112 121
     }
113
-    public void setEquipmentName(String equipmentName) 
122
+    public void setEquipmentName(String equipmentName)
114 123
     {
115 124
         this.equipmentName = equipmentName;
116 125
     }
117 126
 
118
-    public String getEquipmentName() 
127
+    public String getEquipmentName()
119 128
     {
120 129
         return equipmentName;
121 130
     }
122
-    public void setLngLat(String lngLat) 
131
+    public void setLngLat(String lngLat)
123 132
     {
124 133
         this.lngLat = lngLat;
125 134
     }
@@ -128,7 +137,7 @@ public class EquipmentInfo extends BaseEntity
128 137
     {
129 138
         return lngLat;
130 139
     }
131
-    public void setRasterLngLat(String rasterLngLat) 
140
+    public void setRasterLngLat(String rasterLngLat)
132 141
     {
133 142
         this.rasterLngLat = rasterLngLat;
134 143
     }
@@ -137,21 +146,21 @@ public class EquipmentInfo extends BaseEntity
137 146
     {
138 147
         return rasterLngLat;
139 148
     }
140
-    public void setTypeName(String typeName) 
149
+    public void setTypeName(String typeName)
141 150
     {
142 151
         this.typeName = typeName;
143 152
     }
144 153
 
145
-    public String getTypeName() 
154
+    public String getTypeName()
146 155
     {
147 156
         return typeName;
148 157
     }
149
-    public void setStatus(Integer status) 
158
+    public void setStatus(Integer status)
150 159
     {
151 160
         this.status = status;
152 161
     }
153 162
 
154
-    public Integer getStatus() 
163
+    public Integer getStatus()
155 164
     {
156 165
         return status;
157 166
     }
@@ -188,6 +197,14 @@ public class EquipmentInfo extends BaseEntity
188 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 208
     @Override
192 209
     public String toString() {
193 210
         return "EquipmentInfo{" +
@@ -207,4 +224,4 @@ public class EquipmentInfo extends BaseEntity
207 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 4
 import com.lqkj.common.core.model.ResultUtil;
5
+import com.lqkj.info.entity.EquipmentInfo;
6
+import com.lqkj.info.service.EquipmentInfoService;
5 7
 import com.lqkj.ioc.service.SmartParkService;
6 8
 import io.swagger.annotations.Api;
7 9
 import io.swagger.annotations.ApiOperation;
@@ -18,7 +20,8 @@ public class SmartParkController {
18 20
 
19 21
     @Autowired
20 22
     private SmartParkService smartParkService;
21
-
23
+    @Autowired
24
+    private EquipmentInfoService equipmentInfoService;
22 25
 
23 26
     @ApiOperation("智慧园区-园区新增入驻情况")
24 27
     @GetMapping("/addParkNewTenant/{parkId}")
@@ -32,4 +35,10 @@ public class SmartParkController {
32 35
     public ResultUtil getParkFireProtectionInfo(@PathVariable("parkId") Integer parkId){
33 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 19
 		<result property="deviceStatus"    column="device_status"    />
20 20
 		<result property="brand" column="brand"/>
21 21
 		<result property="parkId"	column="park_id"/>
22
+		<result property="warningTime"    column="warning_time"    />
22 23
 	</resultMap>
23 24
 
24 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 27
 	</sql>
27 28
 
28 29
 	<select id="selectEquipmentInfoList" parameterType="EquipmentInfo" resultMap="EquipmentInfoResult">
@@ -61,6 +62,7 @@
61 62
 		    <if test="deviceStatus != null">device_status,</if>
62 63
 		    <if test="brand != null">brand,</if>
63 64
 		    <if test="parkId != null">park_id,</if>
65
+		    <if test="warningTime != null">warning_time,</if>
64 66
 		</trim>
65 67
 		<trim prefix="values (" suffix=")" suffixOverrides=",">
66 68
 			<if test="typeId != null">#{typeId},</if>
@@ -76,6 +78,7 @@
76 78
 		    <if test="deviceStatus != null">#{deviceStatus},</if>
77 79
 		    <if test="brand != null">#{brand},</if>
78 80
 		    <if test="parkId != null">#{parkId},</if>
81
+			<if test="warningTime != null">#{warningTime},</if>
79 82
 		</trim>
80 83
 	</insert>
81 84
 
@@ -95,6 +98,7 @@
95 98
 		    device_status = #{deviceStatus},
96 99
 		    brand = #{brand},
97 100
 		    park_id = #{parkId}
101
+		    <if test="warningTime != null">,warning_time = #{warningTime}</if>
98 102
 		</trim>
99 103
 		where equipment_id = #{equipmentId}
100 104
 	</update>
@@ -109,4 +113,4 @@
109 113
 			#{equipmentId}
110 114
 		</foreach>
111 115
 	</delete>
112
-</mapper>
116
+</mapper>