yangys
2024-03-31 53c8d3e3bd3596132b362f20e52aef380d493a84
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
package com.qianwen.smartman.modules.system.vo;
 
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import com.qianwen.smartman.common.constant.DictConstant;
import com.qianwen.core.coderule.annotation.CodeRule;
import com.qianwen.smartman.modules.system.entity.User;
 
@ApiModel(value = "UserVO", description = "UserVO对象")
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/vo/UserVO.class */
public class UserVO extends User {
    private static final long serialVersionUID = 1;
    @JsonSerialize(using = ToStringSerializer.class)
    private Long id;
    @JsonIgnore
    private String password;
    private String tenantName;
    private String userTypeName;
    private String roleName;
    private String deptName;
    private String postName;
    @CodeRule(code = DictConstant.SEX_CODE)
    private String sexName;
    private String userExt;
    private Long employeeId;
    private String employeeCode;
    private String employeeName;
    private Boolean bindDingFlag = false;
    private Boolean bindQyWechatFlag = false;
    @ApiModelProperty("是否开启钉钉")
    private Boolean dingStatus = false;
    @ApiModelProperty("是否开启企业微信")
    private Boolean wxStatus = false;
 
    public void setId(final Long id) {
        this.id = id;
    }
 
    @Override // org.springblade.modules.system.entity.User
    @JsonIgnore
    public void setPassword(final String password) {
        this.password = password;
    }
 
    public void setTenantName(final String tenantName) {
        this.tenantName = tenantName;
    }
 
    public void setUserTypeName(final String userTypeName) {
        this.userTypeName = userTypeName;
    }
 
    public void setRoleName(final String roleName) {
        this.roleName = roleName;
    }
 
    public void setDeptName(final String deptName) {
        this.deptName = deptName;
    }
 
    public void setPostName(final String postName) {
        this.postName = postName;
    }
 
    public void setSexName(final String sexName) {
        this.sexName = sexName;
    }
 
    public void setUserExt(final String userExt) {
        this.userExt = userExt;
    }
 
    @Override // org.springblade.modules.system.entity.User
    public void setEmployeeId(final Long employeeId) {
        this.employeeId = employeeId;
    }
 
    public void setEmployeeCode(final String employeeCode) {
        this.employeeCode = employeeCode;
    }
 
    public void setEmployeeName(final String employeeName) {
        this.employeeName = employeeName;
    }
 
    public void setBindDingFlag(final Boolean bindDingFlag) {
        this.bindDingFlag = bindDingFlag;
    }
 
    public void setBindQyWechatFlag(final Boolean bindQyWechatFlag) {
        this.bindQyWechatFlag = bindQyWechatFlag;
    }
 
    public void setDingStatus(final Boolean dingStatus) {
        this.dingStatus = dingStatus;
    }
 
    public void setWxStatus(final Boolean wxStatus) {
        this.wxStatus = wxStatus;
    }
 
    @Override // org.springblade.modules.system.entity.User
    public String toString() {
        return "UserVO(id=" + getId() + ", password=" + getPassword() + ", tenantName=" + getTenantName() + ", userTypeName=" + getUserTypeName() + ", roleName=" + getRoleName() + ", deptName=" + getDeptName() + ", postName=" + getPostName() + ", sexName=" + getSexName() + ", userExt=" + getUserExt() + ", employeeId=" + getEmployeeId() + ", employeeCode=" + getEmployeeCode() + ", employeeName=" + getEmployeeName() + ", bindDingFlag=" + getBindDingFlag() + ", bindQyWechatFlag=" + getBindQyWechatFlag() + ", dingStatus=" + getDingStatus() + ", wxStatus=" + getWxStatus() + ")";
    }
 
    @Override // org.springblade.modules.system.entity.User
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof UserVO) {
            UserVO other = (UserVO) o;
            if (other.canEqual(this) && super.equals(o)) {
                Object this$id = getId();
                Object other$id = other.getId();
                if (this$id == null) {
                    if (other$id != null) {
                        return false;
                    }
                } else if (!this$id.equals(other$id)) {
                    return false;
                }
                Object this$employeeId = getEmployeeId();
                Object other$employeeId = other.getEmployeeId();
                if (this$employeeId == null) {
                    if (other$employeeId != null) {
                        return false;
                    }
                } else if (!this$employeeId.equals(other$employeeId)) {
                    return false;
                }
                Object this$bindDingFlag = getBindDingFlag();
                Object other$bindDingFlag = other.getBindDingFlag();
                if (this$bindDingFlag == null) {
                    if (other$bindDingFlag != null) {
                        return false;
                    }
                } else if (!this$bindDingFlag.equals(other$bindDingFlag)) {
                    return false;
                }
                Object this$bindQyWechatFlag = getBindQyWechatFlag();
                Object other$bindQyWechatFlag = other.getBindQyWechatFlag();
                if (this$bindQyWechatFlag == null) {
                    if (other$bindQyWechatFlag != null) {
                        return false;
                    }
                } else if (!this$bindQyWechatFlag.equals(other$bindQyWechatFlag)) {
                    return false;
                }
                Object this$dingStatus = getDingStatus();
                Object other$dingStatus = other.getDingStatus();
                if (this$dingStatus == null) {
                    if (other$dingStatus != null) {
                        return false;
                    }
                } else if (!this$dingStatus.equals(other$dingStatus)) {
                    return false;
                }
                Object this$wxStatus = getWxStatus();
                Object other$wxStatus = other.getWxStatus();
                if (this$wxStatus == null) {
                    if (other$wxStatus != null) {
                        return false;
                    }
                } else if (!this$wxStatus.equals(other$wxStatus)) {
                    return false;
                }
                Object this$password = getPassword();
                Object other$password = other.getPassword();
                if (this$password == null) {
                    if (other$password != null) {
                        return false;
                    }
                } else if (!this$password.equals(other$password)) {
                    return false;
                }
                Object this$tenantName = getTenantName();
                Object other$tenantName = other.getTenantName();
                if (this$tenantName == null) {
                    if (other$tenantName != null) {
                        return false;
                    }
                } else if (!this$tenantName.equals(other$tenantName)) {
                    return false;
                }
                Object this$userTypeName = getUserTypeName();
                Object other$userTypeName = other.getUserTypeName();
                if (this$userTypeName == null) {
                    if (other$userTypeName != null) {
                        return false;
                    }
                } else if (!this$userTypeName.equals(other$userTypeName)) {
                    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$deptName = getDeptName();
                Object other$deptName = other.getDeptName();
                if (this$deptName == null) {
                    if (other$deptName != null) {
                        return false;
                    }
                } else if (!this$deptName.equals(other$deptName)) {
                    return false;
                }
                Object this$postName = getPostName();
                Object other$postName = other.getPostName();
                if (this$postName == null) {
                    if (other$postName != null) {
                        return false;
                    }
                } else if (!this$postName.equals(other$postName)) {
                    return false;
                }
                Object this$sexName = getSexName();
                Object other$sexName = other.getSexName();
                if (this$sexName == null) {
                    if (other$sexName != null) {
                        return false;
                    }
                } else if (!this$sexName.equals(other$sexName)) {
                    return false;
                }
                Object this$userExt = getUserExt();
                Object other$userExt = other.getUserExt();
                if (this$userExt == null) {
                    if (other$userExt != null) {
                        return false;
                    }
                } else if (!this$userExt.equals(other$userExt)) {
                    return false;
                }
                Object this$employeeCode = getEmployeeCode();
                Object other$employeeCode = other.getEmployeeCode();
                if (this$employeeCode == null) {
                    if (other$employeeCode != null) {
                        return false;
                    }
                } else if (!this$employeeCode.equals(other$employeeCode)) {
                    return false;
                }
                Object this$employeeName = getEmployeeName();
                Object other$employeeName = other.getEmployeeName();
                return this$employeeName == null ? other$employeeName == null : this$employeeName.equals(other$employeeName);
            }
            return false;
        }
        return false;
    }
 
    @Override // org.springblade.modules.system.entity.User
    protected boolean canEqual(final Object other) {
        return other instanceof UserVO;
    }
 
    @Override // org.springblade.modules.system.entity.User
    public int hashCode() {
        int result = super.hashCode();
        Object $id = getId();
        int result2 = (result * 59) + ($id == null ? 43 : $id.hashCode());
        Object $employeeId = getEmployeeId();
        int result3 = (result2 * 59) + ($employeeId == null ? 43 : $employeeId.hashCode());
        Object $bindDingFlag = getBindDingFlag();
        int result4 = (result3 * 59) + ($bindDingFlag == null ? 43 : $bindDingFlag.hashCode());
        Object $bindQyWechatFlag = getBindQyWechatFlag();
        int result5 = (result4 * 59) + ($bindQyWechatFlag == null ? 43 : $bindQyWechatFlag.hashCode());
        Object $dingStatus = getDingStatus();
        int result6 = (result5 * 59) + ($dingStatus == null ? 43 : $dingStatus.hashCode());
        Object $wxStatus = getWxStatus();
        int result7 = (result6 * 59) + ($wxStatus == null ? 43 : $wxStatus.hashCode());
        Object $password = getPassword();
        int result8 = (result7 * 59) + ($password == null ? 43 : $password.hashCode());
        Object $tenantName = getTenantName();
        int result9 = (result8 * 59) + ($tenantName == null ? 43 : $tenantName.hashCode());
        Object $userTypeName = getUserTypeName();
        int result10 = (result9 * 59) + ($userTypeName == null ? 43 : $userTypeName.hashCode());
        Object $roleName = getRoleName();
        int result11 = (result10 * 59) + ($roleName == null ? 43 : $roleName.hashCode());
        Object $deptName = getDeptName();
        int result12 = (result11 * 59) + ($deptName == null ? 43 : $deptName.hashCode());
        Object $postName = getPostName();
        int result13 = (result12 * 59) + ($postName == null ? 43 : $postName.hashCode());
        Object $sexName = getSexName();
        int result14 = (result13 * 59) + ($sexName == null ? 43 : $sexName.hashCode());
        Object $userExt = getUserExt();
        int result15 = (result14 * 59) + ($userExt == null ? 43 : $userExt.hashCode());
        Object $employeeCode = getEmployeeCode();
        int result16 = (result15 * 59) + ($employeeCode == null ? 43 : $employeeCode.hashCode());
        Object $employeeName = getEmployeeName();
        return (result16 * 59) + ($employeeName == null ? 43 : $employeeName.hashCode());
    }
 
    public Long getId() {
        return this.id;
    }
 
    @Override // org.springblade.modules.system.entity.User
    public String getPassword() {
        return this.password;
    }
 
    public String getTenantName() {
        return this.tenantName;
    }
 
    public String getUserTypeName() {
        return this.userTypeName;
    }
 
    public String getRoleName() {
        return this.roleName;
    }
 
    public String getDeptName() {
        return this.deptName;
    }
 
    public String getPostName() {
        return this.postName;
    }
 
    public String getSexName() {
        return this.sexName;
    }
 
    public String getUserExt() {
        return this.userExt;
    }
 
    @Override // org.springblade.modules.system.entity.User
    public Long getEmployeeId() {
        return this.employeeId;
    }
 
    public String getEmployeeCode() {
        return this.employeeCode;
    }
 
    public String getEmployeeName() {
        return this.employeeName;
    }
 
    public Boolean getBindDingFlag() {
        return this.bindDingFlag;
    }
 
    public Boolean getBindQyWechatFlag() {
        return this.bindQyWechatFlag;
    }
 
    public Boolean getDingStatus() {
        return this.dingStatus;
    }
 
    public Boolean getWxStatus() {
        return this.wxStatus;
    }
}