|
@@ -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
|
+}
|