SyEquipment.java
5.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
package com.objecteye.entity;
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
public class SyEquipment implements Serializable {
@ApiModelProperty(value = "自增主键")
private Integer id;
@ApiModelProperty(value = "设备名")
private String equipmentName;
@ApiModelProperty(value = "设备ip")
private String equipmentIp;
@ApiModelProperty(value = "rtsp流地址")
private String rtspUrl;
@ApiModelProperty(value = "经度")
private String longitude;
@ApiModelProperty(value = "纬度")
private String latitude;
@ApiModelProperty(value = "朝向")
private String orientation;
@ApiModelProperty(value = "用户名")
private String username;
@ApiModelProperty(value = "用户密码")
private String password;
@ApiModelProperty(value = "设备端口")
private String equipmentPort;
@ApiModelProperty(value = "网络端口")
private String intentPort;
@ApiModelProperty(value = "厂商")
private String vendor;
@ApiModelProperty(value = "描述")
private String description;
private String createDate;
@ApiModelProperty(value = "更新时间")
private String updateDate;
private Integer isDelete;
private Integer equipmentType;
@ApiModelProperty(value = "设备状态")
private Integer status;
@ApiModelProperty(value = "区域外键")
private Integer aid;
@ApiModelProperty(value = "场所")
private String place;
private static final long serialVersionUID = 1L;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getEquipmentName() {
return equipmentName;
}
public void setEquipmentName(String equipmentName) {
this.equipmentName = equipmentName;
}
public String getEquipmentIp() {
return equipmentIp;
}
public void setEquipmentIp(String equipmentIp) {
this.equipmentIp = equipmentIp;
}
public String getRtspUrl() {
return rtspUrl;
}
public void setRtspUrl(String rtspUrl) {
this.rtspUrl = rtspUrl;
}
public String getLongitude() {
return longitude;
}
public void setLongitude(String longitude) {
this.longitude = longitude;
}
public String getLatitude() {
return latitude;
}
public void setLatitude(String latitude) {
this.latitude = latitude;
}
public String getOrientation() {
return orientation;
}
public void setOrientation(String orientation) {
this.orientation = orientation;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getEquipmentPort() {
return equipmentPort;
}
public void setEquipmentPort(String equipmentPort) {
this.equipmentPort = equipmentPort;
}
public String getIntentPort() {
return intentPort;
}
public void setIntentPort(String intentPort) {
this.intentPort = intentPort;
}
public String getVendor() {
return vendor;
}
public void setVendor(String vendor) {
this.vendor = vendor;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getCreateDate() {
return createDate;
}
public void setCreateDate(String createDate) {
this.createDate = createDate;
}
public String getUpdateDate() {
return updateDate;
}
public void setUpdateDate(String updateDate) {
this.updateDate = updateDate;
}
public Integer getIsDelete() {
return isDelete;
}
public void setIsDelete(Integer isDelete) {
this.isDelete = isDelete;
}
public Integer getEquipmentType() {
return equipmentType;
}
public void setEquipmentType(Integer equipmentType) {
this.equipmentType = equipmentType;
}
public Integer getStatus() {
return status;
}
public void setStatus(Integer status) {
this.status = status;
}
public Integer getAid() {
return aid;
}
public void setAid(Integer aid) {
this.aid = aid;
}
public String getPlace() {
return place;
}
public void setPlace(String place) {
this.place = place;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append(getClass().getSimpleName());
sb.append(" [");
sb.append("Hash = ").append(hashCode());
sb.append(", id=").append(id);
sb.append(", equipmentName=").append(equipmentName);
sb.append(", equipmentIp=").append(equipmentIp);
sb.append(", rtspUrl=").append(rtspUrl);
sb.append(", longitude=").append(longitude);
sb.append(", latitude=").append(latitude);
sb.append(", orientation=").append(orientation);
sb.append(", username=").append(username);
sb.append(", password=").append(password);
sb.append(", equipmentPort=").append(equipmentPort);
sb.append(", intentPort=").append(intentPort);
sb.append(", vendor=").append(vendor);
sb.append(", description=").append(description);
sb.append(", createDate=").append(createDate);
sb.append(", updateDate=").append(updateDate);
sb.append(", isDelete=").append(isDelete);
sb.append(", equipmentType=").append(equipmentType);
sb.append(", status=").append(status);
sb.append(", aid=").append(aid);
sb.append(", place=").append(place);
sb.append(", serialVersionUID=").append(serialVersionUID);
sb.append("]");
return sb.toString();
}
}