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
package com.skyline.electricity.pojo;
 
import java.util.*;
import com.skyline.electricity.uwbentity.*;
 
public class PersonPosition
{
    private String userId;
    private String shopId;
    private String userName;
    private String userIndex;
    private String mobile;
    private String email;
    private Integer satelliteNum;
    private String longitude;
    private String latitude;
    private String alitude;
    private String course;
    private List<Code> events;
    private String time;
    private String type;
    
    public String getUserId() {
        return this.userId;
    }
    
    public String getShopId() {
        return this.shopId;
    }
    
    public String getUserName() {
        return this.userName;
    }
    
    public String getUserIndex() {
        return this.userIndex;
    }
    
    public String getMobile() {
        return this.mobile;
    }
    
    public String getEmail() {
        return this.email;
    }
    
    public Integer getSatelliteNum() {
        return this.satelliteNum;
    }
    
    public String getLongitude() {
        return this.longitude;
    }
    
    public String getLatitude() {
        return this.latitude;
    }
    
    public String getAlitude() {
        return this.alitude;
    }
    
    public String getCourse() {
        return this.course;
    }
    
    public List<Code> getEvents() {
        return this.events;
    }
    
    public String getTime() {
        return this.time;
    }
    
    public String getType() {
        return this.type;
    }
    
    public void setUserId(final String userId) {
        this.userId = userId;
    }
    
    public void setShopId(final String shopId) {
        this.shopId = shopId;
    }
    
    public void setUserName(final String userName) {
        this.userName = userName;
    }
    
    public void setUserIndex(final String userIndex) {
        this.userIndex = userIndex;
    }
    
    public void setMobile(final String mobile) {
        this.mobile = mobile;
    }
    
    public void setEmail(final String email) {
        this.email = email;
    }
    
    public void setSatelliteNum(final Integer satelliteNum) {
        this.satelliteNum = satelliteNum;
    }
    
    public void setLongitude(final String longitude) {
        this.longitude = longitude;
    }
    
    public void setLatitude(final String latitude) {
        this.latitude = latitude;
    }
    
    public void setAlitude(final String alitude) {
        this.alitude = alitude;
    }
    
    public void setCourse(final String course) {
        this.course = course;
    }
    
    public void setEvents(final List<Code> events) {
        this.events = events;
    }
    
    public void setTime(final String time) {
        this.time = time;
    }
    
    public void setType(final String type) {
        this.type = type;
    }
    
    @Override
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (!(o instanceof PersonPosition)) {
            return false;
        }
        final PersonPosition other = (PersonPosition)o;
        if (!other.canEqual(this)) {
            return false;
        }
        final Object this$userId = this.getUserId();
        final Object other$userId = other.getUserId();
        Label_0065: {
            if (this$userId == null) {
                if (other$userId == null) {
                    break Label_0065;
                }
            }
            else if (this$userId.equals(other$userId)) {
                break Label_0065;
            }
            return false;
        }
        final Object this$shopId = this.getShopId();
        final Object other$shopId = other.getShopId();
        Label_0102: {
            if (this$shopId == null) {
                if (other$shopId == null) {
                    break Label_0102;
                }
            }
            else if (this$shopId.equals(other$shopId)) {
                break Label_0102;
            }
            return false;
        }
        final Object this$userName = this.getUserName();
        final Object other$userName = other.getUserName();
        Label_0139: {
            if (this$userName == null) {
                if (other$userName == null) {
                    break Label_0139;
                }
            }
            else if (this$userName.equals(other$userName)) {
                break Label_0139;
            }
            return false;
        }
        final Object this$userIndex = this.getUserIndex();
        final Object other$userIndex = other.getUserIndex();
        Label_0176: {
            if (this$userIndex == null) {
                if (other$userIndex == null) {
                    break Label_0176;
                }
            }
            else if (this$userIndex.equals(other$userIndex)) {
                break Label_0176;
            }
            return false;
        }
        final Object this$mobile = this.getMobile();
        final Object other$mobile = other.getMobile();
        Label_0213: {
            if (this$mobile == null) {
                if (other$mobile == null) {
                    break Label_0213;
                }
            }
            else if (this$mobile.equals(other$mobile)) {
                break Label_0213;
            }
            return false;
        }
        final Object this$email = this.getEmail();
        final Object other$email = other.getEmail();
        Label_0250: {
            if (this$email == null) {
                if (other$email == null) {
                    break Label_0250;
                }
            }
            else if (this$email.equals(other$email)) {
                break Label_0250;
            }
            return false;
        }
        final Object this$satelliteNum = this.getSatelliteNum();
        final Object other$satelliteNum = other.getSatelliteNum();
        Label_0287: {
            if (this$satelliteNum == null) {
                if (other$satelliteNum == null) {
                    break Label_0287;
                }
            }
            else if (this$satelliteNum.equals(other$satelliteNum)) {
                break Label_0287;
            }
            return false;
        }
        final Object this$longitude = this.getLongitude();
        final Object other$longitude = other.getLongitude();
        Label_0324: {
            if (this$longitude == null) {
                if (other$longitude == null) {
                    break Label_0324;
                }
            }
            else if (this$longitude.equals(other$longitude)) {
                break Label_0324;
            }
            return false;
        }
        final Object this$latitude = this.getLatitude();
        final Object other$latitude = other.getLatitude();
        Label_0361: {
            if (this$latitude == null) {
                if (other$latitude == null) {
                    break Label_0361;
                }
            }
            else if (this$latitude.equals(other$latitude)) {
                break Label_0361;
            }
            return false;
        }
        final Object this$alitude = this.getAlitude();
        final Object other$alitude = other.getAlitude();
        Label_0398: {
            if (this$alitude == null) {
                if (other$alitude == null) {
                    break Label_0398;
                }
            }
            else if (this$alitude.equals(other$alitude)) {
                break Label_0398;
            }
            return false;
        }
        final Object this$course = this.getCourse();
        final Object other$course = other.getCourse();
        Label_0435: {
            if (this$course == null) {
                if (other$course == null) {
                    break Label_0435;
                }
            }
            else if (this$course.equals(other$course)) {
                break Label_0435;
            }
            return false;
        }
        final Object this$events = this.getEvents();
        final Object other$events = other.getEvents();
        Label_0472: {
            if (this$events == null) {
                if (other$events == null) {
                    break Label_0472;
                }
            }
            else if (this$events.equals(other$events)) {
                break Label_0472;
            }
            return false;
        }
        final Object this$time = this.getTime();
        final Object other$time = other.getTime();
        Label_0509: {
            if (this$time == null) {
                if (other$time == null) {
                    break Label_0509;
                }
            }
            else if (this$time.equals(other$time)) {
                break Label_0509;
            }
            return false;
        }
        final Object this$type = this.getType();
        final Object other$type = other.getType();
        if (this$type == null) {
            if (other$type == null) {
                return true;
            }
        }
        else if (this$type.equals(other$type)) {
            return true;
        }
        return false;
    }
    
    protected boolean canEqual(final Object other) {
        return other instanceof PersonPosition;
    }
    
    @Override
    public int hashCode() {
        final int PRIME = 59;
        int result = 1;
        final Object $userId = this.getUserId();
        result = result * 59 + (($userId == null) ? 43 : $userId.hashCode());
        final Object $shopId = this.getShopId();
        result = result * 59 + (($shopId == null) ? 43 : $shopId.hashCode());
        final Object $userName = this.getUserName();
        result = result * 59 + (($userName == null) ? 43 : $userName.hashCode());
        final Object $userIndex = this.getUserIndex();
        result = result * 59 + (($userIndex == null) ? 43 : $userIndex.hashCode());
        final Object $mobile = this.getMobile();
        result = result * 59 + (($mobile == null) ? 43 : $mobile.hashCode());
        final Object $email = this.getEmail();
        result = result * 59 + (($email == null) ? 43 : $email.hashCode());
        final Object $satelliteNum = this.getSatelliteNum();
        result = result * 59 + (($satelliteNum == null) ? 43 : $satelliteNum.hashCode());
        final Object $longitude = this.getLongitude();
        result = result * 59 + (($longitude == null) ? 43 : $longitude.hashCode());
        final Object $latitude = this.getLatitude();
        result = result * 59 + (($latitude == null) ? 43 : $latitude.hashCode());
        final Object $alitude = this.getAlitude();
        result = result * 59 + (($alitude == null) ? 43 : $alitude.hashCode());
        final Object $course = this.getCourse();
        result = result * 59 + (($course == null) ? 43 : $course.hashCode());
        final Object $events = this.getEvents();
        result = result * 59 + (($events == null) ? 43 : $events.hashCode());
        final Object $time = this.getTime();
        result = result * 59 + (($time == null) ? 43 : $time.hashCode());
        final Object $type = this.getType();
        result = result * 59 + (($type == null) ? 43 : $type.hashCode());
        return result;
    }
    
    @Override
    public String toString() {
        return "PersonPosition(userId=" + this.getUserId() + ", shopId=" + this.getShopId() + ", userName=" + this.getUserName() + ", userIndex=" + this.getUserIndex() + ", mobile=" + this.getMobile() + ", email=" + this.getEmail() + ", satelliteNum=" + this.getSatelliteNum() + ", longitude=" + this.getLongitude() + ", latitude=" + this.getLatitude() + ", alitude=" + this.getAlitude() + ", course=" + this.getCourse() + ", events=" + this.getEvents() + ", time=" + this.getTime() + ", type=" + this.getType() + ")";
    }
}