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
package com.skyline.electricity.pojo;
 
public class Monitor
{
    private Integer gid;
    private String te_type;
    private String te_desc;
    private String te_fname;
    private double te_yaw;
    private double te_pitch;
    private double te_scale;
    private double te_roll;
    private double te_width;
    private double te_height;
    private double te_length;
    private String gemo;
    private String regionPath;
    private String transPtz;
    private String cameraName;
    private String cameraIndex;
    private String status;
    
    public Integer getGid() {
        return this.gid;
    }
    
    public String getTe_type() {
        return this.te_type;
    }
    
    public String getTe_desc() {
        return this.te_desc;
    }
    
    public String getTe_fname() {
        return this.te_fname;
    }
    
    public double getTe_yaw() {
        return this.te_yaw;
    }
    
    public double getTe_pitch() {
        return this.te_pitch;
    }
    
    public double getTe_scale() {
        return this.te_scale;
    }
    
    public double getTe_roll() {
        return this.te_roll;
    }
    
    public double getTe_width() {
        return this.te_width;
    }
    
    public double getTe_height() {
        return this.te_height;
    }
    
    public double getTe_length() {
        return this.te_length;
    }
    
    public String getGemo() {
        return this.gemo;
    }
    
    public String getRegionPath() {
        return this.regionPath;
    }
    
    public String getTransPtz() {
        return this.transPtz;
    }
    
    public String getCameraName() {
        return this.cameraName;
    }
    
    public String getCameraIndex() {
        return this.cameraIndex;
    }
    
    public String getStatus() {
        return this.status;
    }
    
    public void setGid(final Integer gid) {
        this.gid = gid;
    }
    
    public void setTe_type(final String te_type) {
        this.te_type = te_type;
    }
    
    public void setTe_desc(final String te_desc) {
        this.te_desc = te_desc;
    }
    
    public void setTe_fname(final String te_fname) {
        this.te_fname = te_fname;
    }
    
    public void setTe_yaw(final double te_yaw) {
        this.te_yaw = te_yaw;
    }
    
    public void setTe_pitch(final double te_pitch) {
        this.te_pitch = te_pitch;
    }
    
    public void setTe_scale(final double te_scale) {
        this.te_scale = te_scale;
    }
    
    public void setTe_roll(final double te_roll) {
        this.te_roll = te_roll;
    }
    
    public void setTe_width(final double te_width) {
        this.te_width = te_width;
    }
    
    public void setTe_height(final double te_height) {
        this.te_height = te_height;
    }
    
    public void setTe_length(final double te_length) {
        this.te_length = te_length;
    }
    
    public void setGemo(final String gemo) {
        this.gemo = gemo;
    }
    
    public void setRegionPath(final String regionPath) {
        this.regionPath = regionPath;
    }
    
    public void setTransPtz(final String transPtz) {
        this.transPtz = transPtz;
    }
    
    public void setCameraName(final String cameraName) {
        this.cameraName = cameraName;
    }
    
    public void setCameraIndex(final String cameraIndex) {
        this.cameraIndex = cameraIndex;
    }
    
    public void setStatus(final String status) {
        this.status = status;
    }
    
    @Override
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (!(o instanceof Monitor)) {
            return false;
        }
        final Monitor other = (Monitor)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$te_type = this.getTe_type();
        final Object other$te_type = other.getTe_type();
        Label_0102: {
            if (this$te_type == null) {
                if (other$te_type == null) {
                    break Label_0102;
                }
            }
            else if (this$te_type.equals(other$te_type)) {
                break Label_0102;
            }
            return false;
        }
        final Object this$te_desc = this.getTe_desc();
        final Object other$te_desc = other.getTe_desc();
        Label_0139: {
            if (this$te_desc == null) {
                if (other$te_desc == null) {
                    break Label_0139;
                }
            }
            else if (this$te_desc.equals(other$te_desc)) {
                break Label_0139;
            }
            return false;
        }
        final Object this$te_fname = this.getTe_fname();
        final Object other$te_fname = other.getTe_fname();
        Label_0176: {
            if (this$te_fname == null) {
                if (other$te_fname == null) {
                    break Label_0176;
                }
            }
            else if (this$te_fname.equals(other$te_fname)) {
                break Label_0176;
            }
            return false;
        }
        if (Double.compare(this.getTe_yaw(), other.getTe_yaw()) != 0) {
            return false;
        }
        if (Double.compare(this.getTe_pitch(), other.getTe_pitch()) != 0) {
            return false;
        }
        if (Double.compare(this.getTe_scale(), other.getTe_scale()) != 0) {
            return false;
        }
        if (Double.compare(this.getTe_roll(), other.getTe_roll()) != 0) {
            return false;
        }
        if (Double.compare(this.getTe_width(), other.getTe_width()) != 0) {
            return false;
        }
        if (Double.compare(this.getTe_height(), other.getTe_height()) != 0) {
            return false;
        }
        if (Double.compare(this.getTe_length(), other.getTe_length()) != 0) {
            return false;
        }
        final Object this$gemo = this.getGemo();
        final Object other$gemo = other.getGemo();
        Label_0325: {
            if (this$gemo == null) {
                if (other$gemo == null) {
                    break Label_0325;
                }
            }
            else if (this$gemo.equals(other$gemo)) {
                break Label_0325;
            }
            return false;
        }
        final Object this$regionPath = this.getRegionPath();
        final Object other$regionPath = other.getRegionPath();
        Label_0362: {
            if (this$regionPath == null) {
                if (other$regionPath == null) {
                    break Label_0362;
                }
            }
            else if (this$regionPath.equals(other$regionPath)) {
                break Label_0362;
            }
            return false;
        }
        final Object this$transPtz = this.getTransPtz();
        final Object other$transPtz = other.getTransPtz();
        Label_0399: {
            if (this$transPtz == null) {
                if (other$transPtz == null) {
                    break Label_0399;
                }
            }
            else if (this$transPtz.equals(other$transPtz)) {
                break Label_0399;
            }
            return false;
        }
        final Object this$cameraName = this.getCameraName();
        final Object other$cameraName = other.getCameraName();
        Label_0436: {
            if (this$cameraName == null) {
                if (other$cameraName == null) {
                    break Label_0436;
                }
            }
            else if (this$cameraName.equals(other$cameraName)) {
                break Label_0436;
            }
            return false;
        }
        final Object this$cameraIndex = this.getCameraIndex();
        final Object other$cameraIndex = other.getCameraIndex();
        Label_0473: {
            if (this$cameraIndex == null) {
                if (other$cameraIndex == null) {
                    break Label_0473;
                }
            }
            else if (this$cameraIndex.equals(other$cameraIndex)) {
                break Label_0473;
            }
            return false;
        }
        final Object this$status = this.getStatus();
        final Object other$status = other.getStatus();
        if (this$status == null) {
            if (other$status == null) {
                return true;
            }
        }
        else if (this$status.equals(other$status)) {
            return true;
        }
        return false;
    }
    
    protected boolean canEqual(final Object other) {
        return other instanceof Monitor;
    }
    
    @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 $te_type = this.getTe_type();
        result = result * 59 + (($te_type == null) ? 43 : $te_type.hashCode());
        final Object $te_desc = this.getTe_desc();
        result = result * 59 + (($te_desc == null) ? 43 : $te_desc.hashCode());
        final Object $te_fname = this.getTe_fname();
        result = result * 59 + (($te_fname == null) ? 43 : $te_fname.hashCode());
        final long $te_yaw = Double.doubleToLongBits(this.getTe_yaw());
        result = result * 59 + (int)($te_yaw >>> 32 ^ $te_yaw);
        final long $te_pitch = Double.doubleToLongBits(this.getTe_pitch());
        result = result * 59 + (int)($te_pitch >>> 32 ^ $te_pitch);
        final long $te_scale = Double.doubleToLongBits(this.getTe_scale());
        result = result * 59 + (int)($te_scale >>> 32 ^ $te_scale);
        final long $te_roll = Double.doubleToLongBits(this.getTe_roll());
        result = result * 59 + (int)($te_roll >>> 32 ^ $te_roll);
        final long $te_width = Double.doubleToLongBits(this.getTe_width());
        result = result * 59 + (int)($te_width >>> 32 ^ $te_width);
        final long $te_height = Double.doubleToLongBits(this.getTe_height());
        result = result * 59 + (int)($te_height >>> 32 ^ $te_height);
        final long $te_length = Double.doubleToLongBits(this.getTe_length());
        result = result * 59 + (int)($te_length >>> 32 ^ $te_length);
        final Object $gemo = this.getGemo();
        result = result * 59 + (($gemo == null) ? 43 : $gemo.hashCode());
        final Object $regionPath = this.getRegionPath();
        result = result * 59 + (($regionPath == null) ? 43 : $regionPath.hashCode());
        final Object $transPtz = this.getTransPtz();
        result = result * 59 + (($transPtz == null) ? 43 : $transPtz.hashCode());
        final Object $cameraName = this.getCameraName();
        result = result * 59 + (($cameraName == null) ? 43 : $cameraName.hashCode());
        final Object $cameraIndex = this.getCameraIndex();
        result = result * 59 + (($cameraIndex == null) ? 43 : $cameraIndex.hashCode());
        final Object $status = this.getStatus();
        result = result * 59 + (($status == null) ? 43 : $status.hashCode());
        return result;
    }
    
    @Override
    public String toString() {
        return "Monitor(gid=" + this.getGid() + ", te_type=" + this.getTe_type() + ", te_desc=" + this.getTe_desc() + ", te_fname=" + this.getTe_fname() + ", te_yaw=" + this.getTe_yaw() + ", te_pitch=" + this.getTe_pitch() + ", te_scale=" + this.getTe_scale() + ", te_roll=" + this.getTe_roll() + ", te_width=" + this.getTe_width() + ", te_height=" + this.getTe_height() + ", te_length=" + this.getTe_length() + ", gemo=" + this.getGemo() + ", regionPath=" + this.getRegionPath() + ", transPtz=" + this.getTransPtz() + ", cameraName=" + this.getCameraName() + ", cameraIndex=" + this.getCameraIndex() + ", status=" + this.getStatus() + ")";
    }
}