yangys
2024-03-29 4b479381a65bd3ef526cb92631d3550f2aa17459
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
package com.qianwen.core.secure;
 
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
import com.qianwen.core.tool.support.Kv;
 
/* loaded from: blade-starter-auth-9.3.0.0-SNAPSHOT.jar:org/springblade/core/secure/BladeUser.class */
public class BladeUser implements Serializable {
    private static final long serialVersionUID = 1;
    @ApiModelProperty(hidden = true)
    private String clientId;
    @ApiModelProperty(hidden = true)
    private Long userId;
    @ApiModelProperty(hidden = true)
    private String account;
    @ApiModelProperty(hidden = true)
    private String userName;
    @ApiModelProperty(hidden = true)
    private String nickName;
    @ApiModelProperty(hidden = true)
    private String tenantId;
    @ApiModelProperty(hidden = true)
    private String oauthId;
    @ApiModelProperty(hidden = true)
    private String deptId;
    @ApiModelProperty(hidden = true)
    private String postId;
    @ApiModelProperty(hidden = true)
    private String roleId;
    @ApiModelProperty(hidden = true)
    private String roleName;
    @ApiModelProperty(hidden = true)
    private Kv detail;
 
    public void setClientId(final String clientId) {
        this.clientId = clientId;
    }
 
    public void setUserId(final Long userId) {
        this.userId = userId;
    }
 
    public void setAccount(final String account) {
        this.account = account;
    }
 
    public void setUserName(final String userName) {
        this.userName = userName;
    }
 
    public void setNickName(final String nickName) {
        this.nickName = nickName;
    }
 
    public void setTenantId(final String tenantId) {
        this.tenantId = tenantId;
    }
 
    public void setOauthId(final String oauthId) {
        this.oauthId = oauthId;
    }
 
    public void setDeptId(final String deptId) {
        this.deptId = deptId;
    }
 
    public void setPostId(final String postId) {
        this.postId = postId;
    }
 
    public void setRoleId(final String roleId) {
        this.roleId = roleId;
    }
 
    public void setRoleName(final String roleName) {
        this.roleName = roleName;
    }
 
    public void setDetail(final Kv detail) {
        this.detail = detail;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof BladeUser) {
            BladeUser other = (BladeUser) o;
            if (other.canEqual(this)) {
                Object this$userId = getUserId();
                Object other$userId = other.getUserId();
                if (this$userId == null) {
                    if (other$userId != null) {
                        return false;
                    }
                } else if (!this$userId.equals(other$userId)) {
                    return false;
                }
                Object this$clientId = getClientId();
                Object other$clientId = other.getClientId();
                if (this$clientId == null) {
                    if (other$clientId != null) {
                        return false;
                    }
                } else if (!this$clientId.equals(other$clientId)) {
                    return false;
                }
                Object this$account = getAccount();
                Object other$account = other.getAccount();
                if (this$account == null) {
                    if (other$account != null) {
                        return false;
                    }
                } else if (!this$account.equals(other$account)) {
                    return false;
                }
                Object this$userName = getUserName();
                Object other$userName = other.getUserName();
                if (this$userName == null) {
                    if (other$userName != null) {
                        return false;
                    }
                } else if (!this$userName.equals(other$userName)) {
                    return false;
                }
                Object this$nickName = getNickName();
                Object other$nickName = other.getNickName();
                if (this$nickName == null) {
                    if (other$nickName != null) {
                        return false;
                    }
                } else if (!this$nickName.equals(other$nickName)) {
                    return false;
                }
                Object this$tenantId = getTenantId();
                Object other$tenantId = other.getTenantId();
                if (this$tenantId == null) {
                    if (other$tenantId != null) {
                        return false;
                    }
                } else if (!this$tenantId.equals(other$tenantId)) {
                    return false;
                }
                Object this$oauthId = getOauthId();
                Object other$oauthId = other.getOauthId();
                if (this$oauthId == null) {
                    if (other$oauthId != null) {
                        return false;
                    }
                } else if (!this$oauthId.equals(other$oauthId)) {
                    return false;
                }
                Object this$deptId = getDeptId();
                Object other$deptId = other.getDeptId();
                if (this$deptId == null) {
                    if (other$deptId != null) {
                        return false;
                    }
                } else if (!this$deptId.equals(other$deptId)) {
                    return false;
                }
                Object this$postId = getPostId();
                Object other$postId = other.getPostId();
                if (this$postId == null) {
                    if (other$postId != null) {
                        return false;
                    }
                } else if (!this$postId.equals(other$postId)) {
                    return false;
                }
                Object this$roleId = getRoleId();
                Object other$roleId = other.getRoleId();
                if (this$roleId == null) {
                    if (other$roleId != null) {
                        return false;
                    }
                } else if (!this$roleId.equals(other$roleId)) {
                    return false;
                }
                Object this$roleName = getRoleName();
                Object other$roleName = other.getRoleName();
                if (this$roleName == null) {
                    if (other$roleName != null) {
                        return false;
                    }
                } else if (!this$roleName.equals(other$roleName)) {
                    return false;
                }
                Object this$detail = getDetail();
                Object other$detail = other.getDetail();
                return this$detail == null ? other$detail == null : this$detail.equals(other$detail);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof BladeUser;
    }
 
    public int hashCode() {
        Object $userId = getUserId();
        int result = (1 * 59) + ($userId == null ? 43 : $userId.hashCode());
        Object $clientId = getClientId();
        int result2 = (result * 59) + ($clientId == null ? 43 : $clientId.hashCode());
        Object $account = getAccount();
        int result3 = (result2 * 59) + ($account == null ? 43 : $account.hashCode());
        Object $userName = getUserName();
        int result4 = (result3 * 59) + ($userName == null ? 43 : $userName.hashCode());
        Object $nickName = getNickName();
        int result5 = (result4 * 59) + ($nickName == null ? 43 : $nickName.hashCode());
        Object $tenantId = getTenantId();
        int result6 = (result5 * 59) + ($tenantId == null ? 43 : $tenantId.hashCode());
        Object $oauthId = getOauthId();
        int result7 = (result6 * 59) + ($oauthId == null ? 43 : $oauthId.hashCode());
        Object $deptId = getDeptId();
        int result8 = (result7 * 59) + ($deptId == null ? 43 : $deptId.hashCode());
        Object $postId = getPostId();
        int result9 = (result8 * 59) + ($postId == null ? 43 : $postId.hashCode());
        Object $roleId = getRoleId();
        int result10 = (result9 * 59) + ($roleId == null ? 43 : $roleId.hashCode());
        Object $roleName = getRoleName();
        int result11 = (result10 * 59) + ($roleName == null ? 43 : $roleName.hashCode());
        Object $detail = getDetail();
        return (result11 * 59) + ($detail == null ? 43 : $detail.hashCode());
    }
 
    public String toString() {
        return "BladeUser(clientId=" + getClientId() + ", userId=" + getUserId() + ", account=" + getAccount() + ", userName=" + getUserName() + ", nickName=" + getNickName() + ", tenantId=" + getTenantId() + ", oauthId=" + getOauthId() + ", deptId=" + getDeptId() + ", postId=" + getPostId() + ", roleId=" + getRoleId() + ", roleName=" + getRoleName() + ", detail=" + getDetail() + ")";
    }
 
    public String getClientId() {
        return this.clientId;
    }
 
    public Long getUserId() {
        return this.userId;
    }
 
    public String getAccount() {
        return this.account;
    }
 
    public String getUserName() {
        return this.userName;
    }
 
    public String getNickName() {
        return this.nickName;
    }
 
    public String getTenantId() {
        return this.tenantId;
    }
 
    public String getOauthId() {
        return this.oauthId;
    }
 
    public String getDeptId() {
        return this.deptId;
    }
 
    public String getPostId() {
        return this.postId;
    }
 
    public String getRoleId() {
        return this.roleId;
    }
 
    public String getRoleName() {
        return this.roleName;
    }
 
    public Kv getDetail() {
        return this.detail;
    }
}