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
package com.skyline.electricity.pojo;
 
public class Wifi
{
    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;
    
    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 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;
    }
    
    @Override
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (!(o instanceof Wifi)) {
            return false;
        }
        final Wifi other = (Wifi)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();
        if (this$gemo == null) {
            if (other$gemo == null) {
                return true;
            }
        }
        else if (this$gemo.equals(other$gemo)) {
            return true;
        }
        return false;
    }
    
    protected boolean canEqual(final Object other) {
        return other instanceof Wifi;
    }
    
    @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());
        return result;
    }
    
    @Override
    public String toString() {
        return "Wifi(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() + ")";
    }
}