826220679@qq.com
2025-08-07 4d6cd980c5c69e4d9d150669c89734642297e0cd
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
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
package targets;
public class LocationBaseStation {
    private int id; // ±àºÅ/ID
    private String code; // ±àÂë
    private String status; // ×´Ì¬
    private String xCoordinate; // X ×ø±ê
    private String yCoordinate; // Y ×ø±ê
    private String zCoordinate; // Z ×ø±ê
    private String longitude; // ¾­¶È
    private String latitude; // Î³¶È
    private String elevation; // ¸ß³Ì
    private String horizontalAngle; // Ë®Æ½½Ç
    private String pitchAngle; // ¸©Ñö½Ç
    private String floor; // Â¥²ã
    private String group; // ×é±ð
    private String range; // ·¶Î§
    private String syncStatus; // Í¬²½×´Ì¬
    private String syncType; // Í¬²½ÀàÐÍ
    private String syncBaseStation; // Í¬²½»ùÕ¾
    private String ipAddress; // IP µØÖ·
    private String port; // ¶Ë¿Ú
    private String firmwareVersion; // ¹Ì¼þ°æ±¾
    private String judgmentDistance; // Åж¨¾àÀë
    private String battery; // µç³Ø
    private String calibrationDistance; // Ð£×¼¾àÀë
    private String signalSendTime; // Ðźŷ¢ËÍʱ¼ä
    private String communicationGroup; // Í¨ÐÅ×é
    private String iconAddress; // Í¼±êµØÖ·
    private String onlineTime; // ÉÏÏßʱ¼ä
    private String offlineTime; // ÏÂÏßʱ¼ä
    private String offlineDuration; // ÀëÏßʱ³¤
    private String algorithmDimension; // Ë㷨ά¶È
    private String bottomHeight; // µ×²¿¸ß¶È
    private String topHeight; // ¶¥²¿¸ß¶È
    private String isBarometricStation; // ÊÇ·ñÎªÆøÑ¹Õ¾
    private String switchDistance; // Çл»¾àÀë
    private String maxDistance; // ×î´ó¾àÀë
    private String outputAllRanging; // Êä³öÈ«²â¾à
    private String company; // ¹«Ë¾
    private String crossLayerHeight; // ¿ç²ã¸ß¶È
    private String crossLayerGroup; // ¿ç²ã×é
    private String requiredDistance; // ÒªÇó¾àÀë
    private String adjacent1; // ÏàÁÚ 1
    private String adjacent2; // ÏàÁÚ 2
    private String adjacent3; // ÏàÁÚ 3
    private String adjacent4; // ÏàÁÚ 4
    private String adjacent5; // ÏàÁÚ 5
    private String adjacent6; // ÏàÁÚ 6
    private String adjacent7; // ÏàÁÚ 7
    private String adjacent8; // ÏàÁÚ 8
    private String adjacent9; // ÏàÁÚ 9
    private String adjacent10; // ÏàÁÚ 10
    private String reserved1; // ±¸Óà1
    private String reserved2; // ±¸Óà2
    private String reserved3; // ±¸Óà3
    private String reserved4; // ±¸Óà4
    private String reserved5; // ±¸Óà5
    private String reserved6; // ±¸Óà6
    private String reserved7; // ±¸Óà7
    private String reserved8; // ±¸Óà8
    private String reserved9; // ±¸Óà9
    private String reserved10; // ±¸Óà10
    private String reserved11; // ±¸Óà11
    private String reserved12; // ±¸Óà12
    private String reserved13; // ±¸Óà13
    private String reserved14; // ±¸Óà14
    private String reserved15; // ±¸Óà15
    private String reserved16; // ±¸Óà16
 
    // Getter and Setter methods
    public int getId() {
        return id;
    }
 
    public void setId(int id) {
        this.id = id;
    }
 
    public String getCode() {
        return code;
    }
 
    public void setCode(String code) {
        this.code = code;
    }
 
    public String getStatus() {
        return status;
    }
 
    public void setStatus(String status) {
        this.status = status;
    }
 
    public String getXCoordinate() {
        return xCoordinate;
    }
 
    public void setXCoordinate(String xCoordinate) {
        this.xCoordinate = xCoordinate;
    }
 
    public String getYCoordinate() {
        return yCoordinate;
    }
 
    public void setYCoordinate(String yCoordinate) {
        this.yCoordinate = yCoordinate;
    }
 
    public String getZCoordinate() {
        return zCoordinate;
    }
 
    public void setZCoordinate(String zCoordinate) {
        this.zCoordinate = zCoordinate;
    }
 
    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 getElevation() {
        return elevation;
    }
 
    public void setElevation(String elevation) {
        this.elevation = elevation;
    }
 
    public String getHorizontalAngle() {
        return horizontalAngle;
    }
 
    public void setHorizontalAngle(String horizontalAngle) {
        this.horizontalAngle = horizontalAngle;
    }
 
    public String getPitchAngle() {
        return pitchAngle;
    }
 
    public void setPitchAngle(String pitchAngle) {
        this.pitchAngle = pitchAngle;
    }
 
    public String getFloor() {
        return floor;
    }
 
    public void setFloor(String floor) {
        this.floor = floor;
    }
 
    public String getGroup() {
        return group;
    }
 
    public void setGroup(String group) {
        this.group = group;
    }
 
    public String getRange() {
        return range;
    }
 
    public void setRange(String range) {
        this.range = range;
    }
 
    public String getSyncStatus() {
        return syncStatus;
    }
 
    public void setSyncStatus(String syncStatus) {
        this.syncStatus = syncStatus;
    }
 
    public String getSyncType() {
        return syncType;
    }
 
    public void setSyncType(String syncType) {
        this.syncType = syncType;
    }
 
    public String getSyncBaseStation() {
        return syncBaseStation;
    }
 
    public void setSyncBaseStation(String syncBaseStation) {
        this.syncBaseStation = syncBaseStation;
    }
 
    public String getIpAddress() {
        return ipAddress;
    }
 
    public void setIpAddress(String ipAddress) {
        this.ipAddress = ipAddress;
    }
 
    public String getPort() {
        return port;
    }
 
    public void setPort(String port) {
        this.port = port;
    }
 
    public String getFirmwareVersion() {
        return firmwareVersion;
    }
 
    public void setFirmwareVersion(String firmwareVersion) {
        this.firmwareVersion = firmwareVersion;
    }
 
    public String getJudgmentDistance() {
        return judgmentDistance;
    }
 
    public void setJudgmentDistance(String judgmentDistance) {
        this.judgmentDistance = judgmentDistance;
    }
 
    public String getBattery() {
        return battery;
    }
 
    public void setBattery(String battery) {
        this.battery = battery;
    }
 
    public String getCalibrationDistance() {
        return calibrationDistance;
    }
 
    public void setCalibrationDistance(String calibrationDistance) {
        this.calibrationDistance = calibrationDistance;
    }
 
    public String getSignalSendTime() {
        return signalSendTime;
    }
 
    public void setSignalSendTime(String signalSendTime) {
        this.signalSendTime = signalSendTime;
    }
 
    public String getCommunicationGroup() {
        return communicationGroup;
    }
 
    public void setCommunicationGroup(String communicationGroup) {
        this.communicationGroup = communicationGroup;
    }
 
    public String getIconAddress() {
        return iconAddress;
    }
 
    public void setIconAddress(String iconAddress) {
        this.iconAddress = iconAddress;
    }
 
    public String getOnlineTime() {
        return onlineTime;
    }
 
    public void setOnlineTime(String onlineTime) {
        this.onlineTime = onlineTime;
    }
 
    public String getOfflineTime() {
        return offlineTime;
    }
 
    public void setOfflineTime(String offlineTime) {
        this.offlineTime = offlineTime;
    }
 
    public String getOfflineDuration() {
        return offlineDuration;
    }
 
    public void setOfflineDuration(String offlineDuration) {
        this.offlineDuration = offlineDuration;
    }
 
    public String getAlgorithmDimension() {
        return algorithmDimension;
    }
 
    public void setAlgorithmDimension(String algorithmDimension) {
        this.algorithmDimension = algorithmDimension;
    }
 
    public String getBottomHeight() {
        return bottomHeight;
    }
 
    public void setBottomHeight(String bottomHeight) {
        this.bottomHeight = bottomHeight;
    }
 
    public String getTopHeight() {
        return topHeight;
    }
 
    public void setTopHeight(String topHeight) {
        this.topHeight = topHeight;
    }
 
    public String getIsBarometricStation() {
        return isBarometricStation;
    }
 
    public void setIsBarometricStation(String isBarometricStation) {
        this.isBarometricStation = isBarometricStation;
    }
 
    public String getSwitchDistance() {
        return switchDistance;
    }
 
    public void setSwitchDistance(String switchDistance) {
        this.switchDistance = switchDistance;
    }
 
    public String getMaxDistance() {
        return maxDistance;
    }
 
    public void setMaxDistance(String maxDistance) {
        this.maxDistance = maxDistance;
    }
 
    public String getOutputAllRanging() {
        return outputAllRanging;
    }
 
    public void setOutputAllRanging(String outputAllRanging) {
        this.outputAllRanging = outputAllRanging;
    }
 
    public String getCompany() {
        return company;
    }
 
    public void setCompany(String company) {
        this.company = company;
    }
 
    public String getCrossLayerHeight() {
        return crossLayerHeight;
    }
 
    public void setCrossLayerHeight(String crossLayerHeight) {
        this.crossLayerHeight = crossLayerHeight;
    }
 
    public String getCrossLayerGroup() {
        return crossLayerGroup;
    }
 
    public void setCrossLayerGroup(String crossLayerGroup) {
        this.crossLayerGroup = crossLayerGroup;
    }
 
    public String getRequiredDistance() {
        return requiredDistance;
    }
 
    public void setRequiredDistance(String requiredDistance) {
        this.requiredDistance = requiredDistance;
    }
 
    public String getAdjacent1() {
        return adjacent1;
    }
 
    public void setAdjacent1(String adjacent1) {
        this.adjacent1 = adjacent1;
    }
 
    public String getAdjacent2() {
        return adjacent2;
    }
 
    public void setAdjacent2(String adjacent2) {
        this.adjacent2 = adjacent2;
    }
 
    public String getAdjacent3() {
        return adjacent3;
    }
 
    public void setAdjacent3(String adjacent3) {
        this.adjacent3 = adjacent3;
    }
 
    public String getAdjacent4() {
        return adjacent4;
    }
 
    public void setAdjacent4(String adjacent4) {
        this.adjacent4 = adjacent4;
    }
 
    public String getAdjacent5() {
        return adjacent5;
    }
 
    public void setAdjacent5(String adjacent5) {
        this.adjacent5 = adjacent5;
    }
 
    public String getAdjacent6() {
        return adjacent6;
    }
 
    public void setAdjacent6(String adjacent6) {
        this.adjacent6 = adjacent6;
    }
 
    public String getAdjacent7() {
        return adjacent7;
    }
 
    public void setAdjacent7(String adjacent7) {
        this.adjacent7 = adjacent7;
    }
 
    public String getAdjacent8() {
        return adjacent8;
    }
 
    public void setAdjacent8(String adjacent8) {
        this.adjacent8 = adjacent8;
    }
 
    public String getAdjacent9() {
        return adjacent9;
    }
 
    public void setAdjacent9(String adjacent9) {
        this.adjacent9 = adjacent9;
    }
 
    public String getAdjacent10() {
        return adjacent10;
    }
 
    public void setAdjacent10(String adjacent10) {
        this.adjacent10 = adjacent10;
    }
 
    public String getReserved1() {
        return reserved1;
    }
 
    public void setReserved1(String reserved1) {
        this.reserved1 = reserved1;
    }
 
    public String getReserved2() {
        return reserved2;
    }
 
    public void setReserved2(String reserved2) {
        this.reserved2 = reserved2;
    }
 
    public String getReserved3() {
        return reserved3;
    }
 
    public void setReserved3(String reserved3) {
        this.reserved3 = reserved3;
    }
 
    public String getReserved4() {
        return reserved4;
    }
 
    public void setReserved4(String reserved4) {
        this.reserved4 = reserved4;
    }
 
    public String getReserved5() {
        return reserved5;
    }
 
    public void setReserved5(String reserved5) {
        this.reserved5 = reserved5;
    }
 
    public String getReserved6() {
        return reserved6;
    }
 
    public void setReserved6(String reserved6) {
        this.reserved6 = reserved6;
    }
 
    public String getReserved7() {
        return reserved7;
    }
 
    public void setReserved7(String reserved7) {
        this.reserved7 = reserved7;
    }
 
    public String getReserved8() {
        return reserved8;
    }
 
    public void setReserved8(String reserved8) {
        this.reserved8 = reserved8;
    }
 
    public String getReserved9() {
        return reserved9;
    }
 
    public void setReserved9(String reserved9) {
        this.reserved9 = reserved9;
    }
 
    public String getReserved10() {
        return reserved10;
    }
 
    public void setReserved10(String reserved10) {
        this.reserved10 = reserved10;
    }
 
    public String getReserved11() {
        return reserved11;
    }
 
    public void setReserved11(String reserved11) {
        this.reserved11 = reserved11;
    }
 
    public String getReserved12() {
        return reserved12;
    }
 
    public void setReserved12(String reserved12) {
        this.reserved12 = reserved12;
    }
 
    public String getReserved13() {
        return reserved13;
    }
 
    public void setReserved13(String reserved13) {
        this.reserved13 = reserved13;
    }
 
    public String getReserved14() {
        return reserved14;
    }
 
    public void setReserved14(String reserved14) {
        this.reserved14 = reserved14;
    }
 
    public String getReserved15() {
        return reserved15;
    }
 
    public void setReserved15(String reserved15) {
        this.reserved15 = reserved15;
    }
 
    public String getReserved16() {
        return reserved16;
    }
 
    public void setReserved16(String reserved16) {
        this.reserved16 = reserved16;
    }
}