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
package com.skyline.electricity.pojo;
 
public class HistoryRoute
{
    private String id;
    private String name;
    private String description;
    private Properties properties;
    private String availability;
    private Position position;
    private Polyline polyline;
    private Model model;
    private Label label;
    private BillBoard billboard;
    private Path path;
    
    public String getId() {
        return this.id;
    }
    
    public String getName() {
        return this.name;
    }
    
    public String getDescription() {
        return this.description;
    }
    
    public Properties getProperties() {
        return this.properties;
    }
    
    public String getAvailability() {
        return this.availability;
    }
    
    public Position getPosition() {
        return this.position;
    }
    
    public Polyline getPolyline() {
        return this.polyline;
    }
    
    public Model getModel() {
        return this.model;
    }
    
    public Label getLabel() {
        return this.label;
    }
    
    public BillBoard getBillboard() {
        return this.billboard;
    }
    
    public Path getPath() {
        return this.path;
    }
    
    public void setId(final String id) {
        this.id = id;
    }
    
    public void setName(final String name) {
        this.name = name;
    }
    
    public void setDescription(final String description) {
        this.description = description;
    }
    
    public void setProperties(final Properties properties) {
        this.properties = properties;
    }
    
    public void setAvailability(final String availability) {
        this.availability = availability;
    }
    
    public void setPosition(final Position position) {
        this.position = position;
    }
    
    public void setPolyline(final Polyline polyline) {
        this.polyline = polyline;
    }
    
    public void setModel(final Model model) {
        this.model = model;
    }
    
    public void setLabel(final Label label) {
        this.label = label;
    }
    
    public void setBillboard(final BillBoard billboard) {
        this.billboard = billboard;
    }
    
    public void setPath(final Path path) {
        this.path = path;
    }
    
    @Override
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (!(o instanceof HistoryRoute)) {
            return false;
        }
        final HistoryRoute other = (HistoryRoute)o;
        if (!other.canEqual(this)) {
            return false;
        }
        final Object this$id = this.getId();
        final Object other$id = other.getId();
        Label_0065: {
            if (this$id == null) {
                if (other$id == null) {
                    break Label_0065;
                }
            }
            else if (this$id.equals(other$id)) {
                break Label_0065;
            }
            return false;
        }
        final Object this$name = this.getName();
        final Object other$name = other.getName();
        Label_0102: {
            if (this$name == null) {
                if (other$name == null) {
                    break Label_0102;
                }
            }
            else if (this$name.equals(other$name)) {
                break Label_0102;
            }
            return false;
        }
        final Object this$description = this.getDescription();
        final Object other$description = other.getDescription();
        Label_0139: {
            if (this$description == null) {
                if (other$description == null) {
                    break Label_0139;
                }
            }
            else if (this$description.equals(other$description)) {
                break Label_0139;
            }
            return false;
        }
        final Object this$properties = this.getProperties();
        final Object other$properties = other.getProperties();
        Label_0176: {
            if (this$properties == null) {
                if (other$properties == null) {
                    break Label_0176;
                }
            }
            else if (this$properties.equals(other$properties)) {
                break Label_0176;
            }
            return false;
        }
        final Object this$availability = this.getAvailability();
        final Object other$availability = other.getAvailability();
        Label_0213: {
            if (this$availability == null) {
                if (other$availability == null) {
                    break Label_0213;
                }
            }
            else if (this$availability.equals(other$availability)) {
                break Label_0213;
            }
            return false;
        }
        final Object this$position = this.getPosition();
        final Object other$position = other.getPosition();
        Label_0250: {
            if (this$position == null) {
                if (other$position == null) {
                    break Label_0250;
                }
            }
            else if (this$position.equals(other$position)) {
                break Label_0250;
            }
            return false;
        }
        final Object this$polyline = this.getPolyline();
        final Object other$polyline = other.getPolyline();
        Label_0287: {
            if (this$polyline == null) {
                if (other$polyline == null) {
                    break Label_0287;
                }
            }
            else if (this$polyline.equals(other$polyline)) {
                break Label_0287;
            }
            return false;
        }
        final Object this$model = this.getModel();
        final Object other$model = other.getModel();
        Label_0324: {
            if (this$model == null) {
                if (other$model == null) {
                    break Label_0324;
                }
            }
            else if (this$model.equals(other$model)) {
                break Label_0324;
            }
            return false;
        }
        final Object this$label = this.getLabel();
        final Object other$label = other.getLabel();
        Label_0361: {
            if (this$label == null) {
                if (other$label == null) {
                    break Label_0361;
                }
            }
            else if (this$label.equals(other$label)) {
                break Label_0361;
            }
            return false;
        }
        final Object this$billboard = this.getBillboard();
        final Object other$billboard = other.getBillboard();
        Label_0398: {
            if (this$billboard == null) {
                if (other$billboard == null) {
                    break Label_0398;
                }
            }
            else if (this$billboard.equals(other$billboard)) {
                break Label_0398;
            }
            return false;
        }
        final Object this$path = this.getPath();
        final Object other$path = other.getPath();
        if (this$path == null) {
            if (other$path == null) {
                return true;
            }
        }
        else if (this$path.equals(other$path)) {
            return true;
        }
        return false;
    }
    
    protected boolean canEqual(final Object other) {
        return other instanceof HistoryRoute;
    }
    
    @Override
    public int hashCode() {
        final int PRIME = 59;
        int result = 1;
        final Object $id = this.getId();
        result = result * 59 + (($id == null) ? 43 : $id.hashCode());
        final Object $name = this.getName();
        result = result * 59 + (($name == null) ? 43 : $name.hashCode());
        final Object $description = this.getDescription();
        result = result * 59 + (($description == null) ? 43 : $description.hashCode());
        final Object $properties = this.getProperties();
        result = result * 59 + (($properties == null) ? 43 : $properties.hashCode());
        final Object $availability = this.getAvailability();
        result = result * 59 + (($availability == null) ? 43 : $availability.hashCode());
        final Object $position = this.getPosition();
        result = result * 59 + (($position == null) ? 43 : $position.hashCode());
        final Object $polyline = this.getPolyline();
        result = result * 59 + (($polyline == null) ? 43 : $polyline.hashCode());
        final Object $model = this.getModel();
        result = result * 59 + (($model == null) ? 43 : $model.hashCode());
        final Object $label = this.getLabel();
        result = result * 59 + (($label == null) ? 43 : $label.hashCode());
        final Object $billboard = this.getBillboard();
        result = result * 59 + (($billboard == null) ? 43 : $billboard.hashCode());
        final Object $path = this.getPath();
        result = result * 59 + (($path == null) ? 43 : $path.hashCode());
        return result;
    }
    
    @Override
    public String toString() {
        return "HistoryRoute(id=" + this.getId() + ", name=" + this.getName() + ", description=" + this.getDescription() + ", properties=" + this.getProperties() + ", availability=" + this.getAvailability() + ", position=" + this.getPosition() + ", polyline=" + this.getPolyline() + ", model=" + this.getModel() + ", label=" + this.getLabel() + ", billboard=" + this.getBillboard() + ", path=" + this.getPath() + ")";
    }
}