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
package com.skyline.electricity.entity;
 
public class PgPos
{
    private String id;
    private String name;
    private String orgId;
    private String orgName;
    private String roleId;
    private String roleName;
    private String specId;
    private String specName;
    private String code;
    private Integer seqNo;
    
    public String getId() {
        return this.id;
    }
    
    public String getName() {
        return this.name;
    }
    
    public String getOrgId() {
        return this.orgId;
    }
    
    public String getOrgName() {
        return this.orgName;
    }
    
    public String getRoleId() {
        return this.roleId;
    }
    
    public String getRoleName() {
        return this.roleName;
    }
    
    public String getSpecId() {
        return this.specId;
    }
    
    public String getSpecName() {
        return this.specName;
    }
    
    public String getCode() {
        return this.code;
    }
    
    public Integer getSeqNo() {
        return this.seqNo;
    }
    
    public void setId(final String id) {
        this.id = id;
    }
    
    public void setName(final String name) {
        this.name = name;
    }
    
    public void setOrgId(final String orgId) {
        this.orgId = orgId;
    }
    
    public void setOrgName(final String orgName) {
        this.orgName = orgName;
    }
    
    public void setRoleId(final String roleId) {
        this.roleId = roleId;
    }
    
    public void setRoleName(final String roleName) {
        this.roleName = roleName;
    }
    
    public void setSpecId(final String specId) {
        this.specId = specId;
    }
    
    public void setSpecName(final String specName) {
        this.specName = specName;
    }
    
    public void setCode(final String code) {
        this.code = code;
    }
    
    public void setSeqNo(final Integer seqNo) {
        this.seqNo = seqNo;
    }
    
    @Override
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (!(o instanceof PgPos)) {
            return false;
        }
        final PgPos other = (PgPos)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$orgId = this.getOrgId();
        final Object other$orgId = other.getOrgId();
        Label_0139: {
            if (this$orgId == null) {
                if (other$orgId == null) {
                    break Label_0139;
                }
            }
            else if (this$orgId.equals(other$orgId)) {
                break Label_0139;
            }
            return false;
        }
        final Object this$orgName = this.getOrgName();
        final Object other$orgName = other.getOrgName();
        Label_0176: {
            if (this$orgName == null) {
                if (other$orgName == null) {
                    break Label_0176;
                }
            }
            else if (this$orgName.equals(other$orgName)) {
                break Label_0176;
            }
            return false;
        }
        final Object this$roleId = this.getRoleId();
        final Object other$roleId = other.getRoleId();
        Label_0213: {
            if (this$roleId == null) {
                if (other$roleId == null) {
                    break Label_0213;
                }
            }
            else if (this$roleId.equals(other$roleId)) {
                break Label_0213;
            }
            return false;
        }
        final Object this$roleName = this.getRoleName();
        final Object other$roleName = other.getRoleName();
        Label_0250: {
            if (this$roleName == null) {
                if (other$roleName == null) {
                    break Label_0250;
                }
            }
            else if (this$roleName.equals(other$roleName)) {
                break Label_0250;
            }
            return false;
        }
        final Object this$specId = this.getSpecId();
        final Object other$specId = other.getSpecId();
        Label_0287: {
            if (this$specId == null) {
                if (other$specId == null) {
                    break Label_0287;
                }
            }
            else if (this$specId.equals(other$specId)) {
                break Label_0287;
            }
            return false;
        }
        final Object this$specName = this.getSpecName();
        final Object other$specName = other.getSpecName();
        Label_0324: {
            if (this$specName == null) {
                if (other$specName == null) {
                    break Label_0324;
                }
            }
            else if (this$specName.equals(other$specName)) {
                break Label_0324;
            }
            return false;
        }
        final Object this$code = this.getCode();
        final Object other$code = other.getCode();
        Label_0361: {
            if (this$code == null) {
                if (other$code == null) {
                    break Label_0361;
                }
            }
            else if (this$code.equals(other$code)) {
                break Label_0361;
            }
            return false;
        }
        final Object this$seqNo = this.getSeqNo();
        final Object other$seqNo = other.getSeqNo();
        if (this$seqNo == null) {
            if (other$seqNo == null) {
                return true;
            }
        }
        else if (this$seqNo.equals(other$seqNo)) {
            return true;
        }
        return false;
    }
    
    protected boolean canEqual(final Object other) {
        return other instanceof PgPos;
    }
    
    @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 $orgId = this.getOrgId();
        result = result * 59 + (($orgId == null) ? 43 : $orgId.hashCode());
        final Object $orgName = this.getOrgName();
        result = result * 59 + (($orgName == null) ? 43 : $orgName.hashCode());
        final Object $roleId = this.getRoleId();
        result = result * 59 + (($roleId == null) ? 43 : $roleId.hashCode());
        final Object $roleName = this.getRoleName();
        result = result * 59 + (($roleName == null) ? 43 : $roleName.hashCode());
        final Object $specId = this.getSpecId();
        result = result * 59 + (($specId == null) ? 43 : $specId.hashCode());
        final Object $specName = this.getSpecName();
        result = result * 59 + (($specName == null) ? 43 : $specName.hashCode());
        final Object $code = this.getCode();
        result = result * 59 + (($code == null) ? 43 : $code.hashCode());
        final Object $seqNo = this.getSeqNo();
        result = result * 59 + (($seqNo == null) ? 43 : $seqNo.hashCode());
        return result;
    }
    
    @Override
    public String toString() {
        return "PgPos(id=" + this.getId() + ", name=" + this.getName() + ", orgId=" + this.getOrgId() + ", orgName=" + this.getOrgName() + ", roleId=" + this.getRoleId() + ", roleName=" + this.getRoleName() + ", specId=" + this.getSpecId() + ", specName=" + this.getSpecName() + ", code=" + this.getCode() + ", seqNo=" + this.getSeqNo() + ")";
    }
}