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
package com.skyline.electricity.entity;
 
import java.sql.*;
 
public class SysDicts
{
    private String createBy;
    private Date createDate;
    private String delFlag;
    private String description;
    private String icon;
    private String id;
    private String interNo;
    private String label;
    private String parentId;
    private String remarks;
    private int sort;
    private String type;
    private String updateBy;
    private Date updateDate;
    private String value;
    
    public String getCreateBy() {
        return this.createBy;
    }
    
    public Date getCreateDate() {
        return this.createDate;
    }
    
    public String getDelFlag() {
        return this.delFlag;
    }
    
    public String getDescription() {
        return this.description;
    }
    
    public String getIcon() {
        return this.icon;
    }
    
    public String getId() {
        return this.id;
    }
    
    public String getInterNo() {
        return this.interNo;
    }
    
    public String getLabel() {
        return this.label;
    }
    
    public String getParentId() {
        return this.parentId;
    }
    
    public String getRemarks() {
        return this.remarks;
    }
    
    public int getSort() {
        return this.sort;
    }
    
    public String getType() {
        return this.type;
    }
    
    public String getUpdateBy() {
        return this.updateBy;
    }
    
    public Date getUpdateDate() {
        return this.updateDate;
    }
    
    public String getValue() {
        return this.value;
    }
    
    public void setCreateBy(final String createBy) {
        this.createBy = createBy;
    }
    
    public void setCreateDate(final Date createDate) {
        this.createDate = createDate;
    }
    
    public void setDelFlag(final String delFlag) {
        this.delFlag = delFlag;
    }
    
    public void setDescription(final String description) {
        this.description = description;
    }
    
    public void setIcon(final String icon) {
        this.icon = icon;
    }
    
    public void setId(final String id) {
        this.id = id;
    }
    
    public void setInterNo(final String interNo) {
        this.interNo = interNo;
    }
    
    public void setLabel(final String label) {
        this.label = label;
    }
    
    public void setParentId(final String parentId) {
        this.parentId = parentId;
    }
    
    public void setRemarks(final String remarks) {
        this.remarks = remarks;
    }
    
    public void setSort(final int sort) {
        this.sort = sort;
    }
    
    public void setType(final String type) {
        this.type = type;
    }
    
    public void setUpdateBy(final String updateBy) {
        this.updateBy = updateBy;
    }
    
    public void setUpdateDate(final Date updateDate) {
        this.updateDate = updateDate;
    }
    
    public void setValue(final String value) {
        this.value = value;
    }
    
    @Override
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (!(o instanceof SysDicts)) {
            return false;
        }
        final SysDicts other = (SysDicts)o;
        if (!other.canEqual(this)) {
            return false;
        }
        final Object this$createBy = this.getCreateBy();
        final Object other$createBy = other.getCreateBy();
        Label_0065: {
            if (this$createBy == null) {
                if (other$createBy == null) {
                    break Label_0065;
                }
            }
            else if (this$createBy.equals(other$createBy)) {
                break Label_0065;
            }
            return false;
        }
        final Object this$createDate = this.getCreateDate();
        final Object other$createDate = other.getCreateDate();
        Label_0102: {
            if (this$createDate == null) {
                if (other$createDate == null) {
                    break Label_0102;
                }
            }
            else if (this$createDate.equals(other$createDate)) {
                break Label_0102;
            }
            return false;
        }
        final Object this$delFlag = this.getDelFlag();
        final Object other$delFlag = other.getDelFlag();
        Label_0139: {
            if (this$delFlag == null) {
                if (other$delFlag == null) {
                    break Label_0139;
                }
            }
            else if (this$delFlag.equals(other$delFlag)) {
                break Label_0139;
            }
            return false;
        }
        final Object this$description = this.getDescription();
        final Object other$description = other.getDescription();
        Label_0176: {
            if (this$description == null) {
                if (other$description == null) {
                    break Label_0176;
                }
            }
            else if (this$description.equals(other$description)) {
                break Label_0176;
            }
            return false;
        }
        final Object this$icon = this.getIcon();
        final Object other$icon = other.getIcon();
        Label_0213: {
            if (this$icon == null) {
                if (other$icon == null) {
                    break Label_0213;
                }
            }
            else if (this$icon.equals(other$icon)) {
                break Label_0213;
            }
            return false;
        }
        final Object this$id = this.getId();
        final Object other$id = other.getId();
        Label_0250: {
            if (this$id == null) {
                if (other$id == null) {
                    break Label_0250;
                }
            }
            else if (this$id.equals(other$id)) {
                break Label_0250;
            }
            return false;
        }
        final Object this$interNo = this.getInterNo();
        final Object other$interNo = other.getInterNo();
        Label_0287: {
            if (this$interNo == null) {
                if (other$interNo == null) {
                    break Label_0287;
                }
            }
            else if (this$interNo.equals(other$interNo)) {
                break Label_0287;
            }
            return false;
        }
        final Object this$label = this.getLabel();
        final Object other$label = other.getLabel();
        Label_0324: {
            if (this$label == null) {
                if (other$label == null) {
                    break Label_0324;
                }
            }
            else if (this$label.equals(other$label)) {
                break Label_0324;
            }
            return false;
        }
        final Object this$parentId = this.getParentId();
        final Object other$parentId = other.getParentId();
        Label_0361: {
            if (this$parentId == null) {
                if (other$parentId == null) {
                    break Label_0361;
                }
            }
            else if (this$parentId.equals(other$parentId)) {
                break Label_0361;
            }
            return false;
        }
        final Object this$remarks = this.getRemarks();
        final Object other$remarks = other.getRemarks();
        Label_0398: {
            if (this$remarks == null) {
                if (other$remarks == null) {
                    break Label_0398;
                }
            }
            else if (this$remarks.equals(other$remarks)) {
                break Label_0398;
            }
            return false;
        }
        if (this.getSort() != other.getSort()) {
            return false;
        }
        final Object this$type = this.getType();
        final Object other$type = other.getType();
        Label_0448: {
            if (this$type == null) {
                if (other$type == null) {
                    break Label_0448;
                }
            }
            else if (this$type.equals(other$type)) {
                break Label_0448;
            }
            return false;
        }
        final Object this$updateBy = this.getUpdateBy();
        final Object other$updateBy = other.getUpdateBy();
        Label_0485: {
            if (this$updateBy == null) {
                if (other$updateBy == null) {
                    break Label_0485;
                }
            }
            else if (this$updateBy.equals(other$updateBy)) {
                break Label_0485;
            }
            return false;
        }
        final Object this$updateDate = this.getUpdateDate();
        final Object other$updateDate = other.getUpdateDate();
        Label_0522: {
            if (this$updateDate == null) {
                if (other$updateDate == null) {
                    break Label_0522;
                }
            }
            else if (this$updateDate.equals(other$updateDate)) {
                break Label_0522;
            }
            return false;
        }
        final Object this$value = this.getValue();
        final Object other$value = other.getValue();
        if (this$value == null) {
            if (other$value == null) {
                return true;
            }
        }
        else if (this$value.equals(other$value)) {
            return true;
        }
        return false;
    }
    
    protected boolean canEqual(final Object other) {
        return other instanceof SysDicts;
    }
    
    @Override
    public int hashCode() {
        final int PRIME = 59;
        int result = 1;
        final Object $createBy = this.getCreateBy();
        result = result * 59 + (($createBy == null) ? 43 : $createBy.hashCode());
        final Object $createDate = this.getCreateDate();
        result = result * 59 + (($createDate == null) ? 43 : $createDate.hashCode());
        final Object $delFlag = this.getDelFlag();
        result = result * 59 + (($delFlag == null) ? 43 : $delFlag.hashCode());
        final Object $description = this.getDescription();
        result = result * 59 + (($description == null) ? 43 : $description.hashCode());
        final Object $icon = this.getIcon();
        result = result * 59 + (($icon == null) ? 43 : $icon.hashCode());
        final Object $id = this.getId();
        result = result * 59 + (($id == null) ? 43 : $id.hashCode());
        final Object $interNo = this.getInterNo();
        result = result * 59 + (($interNo == null) ? 43 : $interNo.hashCode());
        final Object $label = this.getLabel();
        result = result * 59 + (($label == null) ? 43 : $label.hashCode());
        final Object $parentId = this.getParentId();
        result = result * 59 + (($parentId == null) ? 43 : $parentId.hashCode());
        final Object $remarks = this.getRemarks();
        result = result * 59 + (($remarks == null) ? 43 : $remarks.hashCode());
        result = result * 59 + this.getSort();
        final Object $type = this.getType();
        result = result * 59 + (($type == null) ? 43 : $type.hashCode());
        final Object $updateBy = this.getUpdateBy();
        result = result * 59 + (($updateBy == null) ? 43 : $updateBy.hashCode());
        final Object $updateDate = this.getUpdateDate();
        result = result * 59 + (($updateDate == null) ? 43 : $updateDate.hashCode());
        final Object $value = this.getValue();
        result = result * 59 + (($value == null) ? 43 : $value.hashCode());
        return result;
    }
    
    @Override
    public String toString() {
        return "SysDicts(createBy=" + this.getCreateBy() + ", createDate=" + this.getCreateDate() + ", delFlag=" + this.getDelFlag() + ", description=" + this.getDescription() + ", icon=" + this.getIcon() + ", id=" + this.getId() + ", interNo=" + this.getInterNo() + ", label=" + this.getLabel() + ", parentId=" + this.getParentId() + ", remarks=" + this.getRemarks() + ", sort=" + this.getSort() + ", type=" + this.getType() + ", updateBy=" + this.getUpdateBy() + ", updateDate=" + this.getUpdateDate() + ", value=" + this.getValue() + ")";
    }
}