leutu
2024-05-08 543e4eb01ca210b20876e8139cb3d0403d7d065c
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
package com.skyline.electricity.pojo;
 
import com.baomidou.mybatisplus.annotation.TableField;
import lombok.experimental.FieldNameConstants;
 
import java.beans.Transient;
 
public class MonitorInfo
{
    private Integer gid;
    private String monitor_name;
    private String monitor_type;
    private String belong_device;
    private String aisle_no;
    private String aisle_type;
    private String video_ip;
    private String monitor_id;
    private String belong_area;
    private String monitor_index;
    private String desc;
    private String x;
    private String y;
    private String z;
    private String hk_rtsp;
    private String geom;
 
 
 
    public Integer getGid() {
        return this.gid;
    }
    
    public String getMonitor_name() {
        return this.monitor_name;
    }
    
    public String getMonitor_type() {
        return this.monitor_type;
    }
    
    public String getBelong_device() {
        return this.belong_device;
    }
    
    public String getAisle_no() {
        return this.aisle_no;
    }
    
    public String getAisle_type() {
        return this.aisle_type;
    }
    
    public String getVideo_ip() {
        return this.video_ip;
    }
    
    public String getMonitor_id() {
        return this.monitor_id;
    }
    
    public String getBelong_area() {
        return this.belong_area;
    }
    
    public String getMonitor_index() {
        return this.monitor_index;
    }
    
    public String getDesc() {
        return this.desc;
    }
    
    public String getX() {
        return this.x;
    }
    
    public String getY() {
        return this.y;
    }
    
    public String getZ() {
        return this.z;
    }
    
    public String getHk_rtsp() {
        return this.hk_rtsp;
    }
    
    public String getGeom() {
        return this.geom;
    }
    
    public void setGid(final Integer gid) {
        this.gid = gid;
    }
    
    public void setMonitor_name(final String monitor_name) {
        this.monitor_name = monitor_name;
    }
    
    public void setMonitor_type(final String monitor_type) {
        this.monitor_type = monitor_type;
    }
    
    public void setBelong_device(final String belong_device) {
        this.belong_device = belong_device;
    }
    
    public void setAisle_no(final String aisle_no) {
        this.aisle_no = aisle_no;
    }
    
    public void setAisle_type(final String aisle_type) {
        this.aisle_type = aisle_type;
    }
    
    public void setVideo_ip(final String video_ip) {
        this.video_ip = video_ip;
    }
    
    public void setMonitor_id(final String monitor_id) {
        this.monitor_id = monitor_id;
    }
    
    public void setBelong_area(final String belong_area) {
        this.belong_area = belong_area;
    }
    
    public void setMonitor_index(final String monitor_index) {
        this.monitor_index = monitor_index;
    }
    
    public void setDesc(final String desc) {
        this.desc = desc;
    }
    
    public void setX(final String x) {
        this.x = x;
    }
    
    public void setY(final String y) {
        this.y = y;
    }
    
    public void setZ(final String z) {
        this.z = z;
    }
    
    public void setHk_rtsp(final String hk_rtsp) {
        this.hk_rtsp = hk_rtsp;
    }
    
    public void setGeom(final String geom) {
        this.geom = geom;
    }
    
    @Override
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (!(o instanceof MonitorInfo)) {
            return false;
        }
        final MonitorInfo other = (MonitorInfo)o;
        if (!other.canEqual(this)) {
            return false;
        }
        final Object this$gid = this.getGid();
        final Object other$gid = other.getGid();
        Label_0065: {
            if (this$gid == null) {
                if (other$gid == null) {
                    break Label_0065;
                }
            }
            else if (this$gid.equals(other$gid)) {
                break Label_0065;
            }
            return false;
        }
        final Object this$monitor_name = this.getMonitor_name();
        final Object other$monitor_name = other.getMonitor_name();
        Label_0102: {
            if (this$monitor_name == null) {
                if (other$monitor_name == null) {
                    break Label_0102;
                }
            }
            else if (this$monitor_name.equals(other$monitor_name)) {
                break Label_0102;
            }
            return false;
        }
        final Object this$monitor_type = this.getMonitor_type();
        final Object other$monitor_type = other.getMonitor_type();
        Label_0139: {
            if (this$monitor_type == null) {
                if (other$monitor_type == null) {
                    break Label_0139;
                }
            }
            else if (this$monitor_type.equals(other$monitor_type)) {
                break Label_0139;
            }
            return false;
        }
        final Object this$belong_device = this.getBelong_device();
        final Object other$belong_device = other.getBelong_device();
        Label_0176: {
            if (this$belong_device == null) {
                if (other$belong_device == null) {
                    break Label_0176;
                }
            }
            else if (this$belong_device.equals(other$belong_device)) {
                break Label_0176;
            }
            return false;
        }
        final Object this$aisle_no = this.getAisle_no();
        final Object other$aisle_no = other.getAisle_no();
        Label_0213: {
            if (this$aisle_no == null) {
                if (other$aisle_no == null) {
                    break Label_0213;
                }
            }
            else if (this$aisle_no.equals(other$aisle_no)) {
                break Label_0213;
            }
            return false;
        }
        final Object this$aisle_type = this.getAisle_type();
        final Object other$aisle_type = other.getAisle_type();
        Label_0250: {
            if (this$aisle_type == null) {
                if (other$aisle_type == null) {
                    break Label_0250;
                }
            }
            else if (this$aisle_type.equals(other$aisle_type)) {
                break Label_0250;
            }
            return false;
        }
        final Object this$video_ip = this.getVideo_ip();
        final Object other$video_ip = other.getVideo_ip();
        Label_0287: {
            if (this$video_ip == null) {
                if (other$video_ip == null) {
                    break Label_0287;
                }
            }
            else if (this$video_ip.equals(other$video_ip)) {
                break Label_0287;
            }
            return false;
        }
        final Object this$monitor_id = this.getMonitor_id();
        final Object other$monitor_id = other.getMonitor_id();
        Label_0324: {
            if (this$monitor_id == null) {
                if (other$monitor_id == null) {
                    break Label_0324;
                }
            }
            else if (this$monitor_id.equals(other$monitor_id)) {
                break Label_0324;
            }
            return false;
        }
        final Object this$belong_area = this.getBelong_area();
        final Object other$belong_area = other.getBelong_area();
        Label_0361: {
            if (this$belong_area == null) {
                if (other$belong_area == null) {
                    break Label_0361;
                }
            }
            else if (this$belong_area.equals(other$belong_area)) {
                break Label_0361;
            }
            return false;
        }
        final Object this$monitor_index = this.getMonitor_index();
        final Object other$monitor_index = other.getMonitor_index();
        Label_0398: {
            if (this$monitor_index == null) {
                if (other$monitor_index == null) {
                    break Label_0398;
                }
            }
            else if (this$monitor_index.equals(other$monitor_index)) {
                break Label_0398;
            }
            return false;
        }
        final Object this$desc = this.getDesc();
        final Object other$desc = other.getDesc();
        Label_0435: {
            if (this$desc == null) {
                if (other$desc == null) {
                    break Label_0435;
                }
            }
            else if (this$desc.equals(other$desc)) {
                break Label_0435;
            }
            return false;
        }
        final Object this$x = this.getX();
        final Object other$x = other.getX();
        Label_0472: {
            if (this$x == null) {
                if (other$x == null) {
                    break Label_0472;
                }
            }
            else if (this$x.equals(other$x)) {
                break Label_0472;
            }
            return false;
        }
        final Object this$y = this.getY();
        final Object other$y = other.getY();
        Label_0509: {
            if (this$y == null) {
                if (other$y == null) {
                    break Label_0509;
                }
            }
            else if (this$y.equals(other$y)) {
                break Label_0509;
            }
            return false;
        }
        final Object this$z = this.getZ();
        final Object other$z = other.getZ();
        Label_0546: {
            if (this$z == null) {
                if (other$z == null) {
                    break Label_0546;
                }
            }
            else if (this$z.equals(other$z)) {
                break Label_0546;
            }
            return false;
        }
        final Object this$hk_rtsp = this.getHk_rtsp();
        final Object other$hk_rtsp = other.getHk_rtsp();
        Label_0583: {
            if (this$hk_rtsp == null) {
                if (other$hk_rtsp == null) {
                    break Label_0583;
                }
            }
            else if (this$hk_rtsp.equals(other$hk_rtsp)) {
                break Label_0583;
            }
            return false;
        }
        final Object this$geom = this.getGeom();
        final Object other$geom = other.getGeom();
        if (this$geom == null) {
            if (other$geom == null) {
                return true;
            }
        }
        else if (this$geom.equals(other$geom)) {
            return true;
        }
        return false;
    }
    
    protected boolean canEqual(final Object other) {
        return other instanceof MonitorInfo;
    }
    
    @Override
    public int hashCode() {
        final int PRIME = 59;
        int result = 1;
        final Object $gid = this.getGid();
        result = result * 59 + (($gid == null) ? 43 : $gid.hashCode());
        final Object $monitor_name = this.getMonitor_name();
        result = result * 59 + (($monitor_name == null) ? 43 : $monitor_name.hashCode());
        final Object $monitor_type = this.getMonitor_type();
        result = result * 59 + (($monitor_type == null) ? 43 : $monitor_type.hashCode());
        final Object $belong_device = this.getBelong_device();
        result = result * 59 + (($belong_device == null) ? 43 : $belong_device.hashCode());
        final Object $aisle_no = this.getAisle_no();
        result = result * 59 + (($aisle_no == null) ? 43 : $aisle_no.hashCode());
        final Object $aisle_type = this.getAisle_type();
        result = result * 59 + (($aisle_type == null) ? 43 : $aisle_type.hashCode());
        final Object $video_ip = this.getVideo_ip();
        result = result * 59 + (($video_ip == null) ? 43 : $video_ip.hashCode());
        final Object $monitor_id = this.getMonitor_id();
        result = result * 59 + (($monitor_id == null) ? 43 : $monitor_id.hashCode());
        final Object $belong_area = this.getBelong_area();
        result = result * 59 + (($belong_area == null) ? 43 : $belong_area.hashCode());
        final Object $monitor_index = this.getMonitor_index();
        result = result * 59 + (($monitor_index == null) ? 43 : $monitor_index.hashCode());
        final Object $desc = this.getDesc();
        result = result * 59 + (($desc == null) ? 43 : $desc.hashCode());
        final Object $x = this.getX();
        result = result * 59 + (($x == null) ? 43 : $x.hashCode());
        final Object $y = this.getY();
        result = result * 59 + (($y == null) ? 43 : $y.hashCode());
        final Object $z = this.getZ();
        result = result * 59 + (($z == null) ? 43 : $z.hashCode());
        final Object $hk_rtsp = this.getHk_rtsp();
        result = result * 59 + (($hk_rtsp == null) ? 43 : $hk_rtsp.hashCode());
        final Object $geom = this.getGeom();
        result = result * 59 + (($geom == null) ? 43 : $geom.hashCode());
        return result;
    }
    
    @Override
    public String toString() {
        return "MonitorInfo(gid=" + this.getGid() + ", monitor_name=" + this.getMonitor_name() + ", monitor_type=" + this.getMonitor_type() + ", belong_device=" + this.getBelong_device() + ", aisle_no=" + this.getAisle_no() + ", aisle_type=" + this.getAisle_type() + ", video_ip=" + this.getVideo_ip() + ", monitor_id=" + this.getMonitor_id() + ", belong_area=" + this.getBelong_area() + ", monitor_index=" + this.getMonitor_index() + ", desc=" + this.getDesc() + ", x=" + this.getX() + ", y=" + this.getY() + ", z=" + this.getZ() + ", hk_rtsp=" + this.getHk_rtsp() + ", geom=" + this.getGeom() + ")";
    }
}