yangys
2024-04-02 6bed83e92f67954cd2135071133329f2205efe4f
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
package com.qianwen.smartman.modules.system.entity;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/entity/OauthLoginEmployee.class */
public class OauthLoginEmployee extends User {
    public String systemAccount;
 
    public void setSystemAccount(final String systemAccount) {
        this.systemAccount = systemAccount;
    }
 
    @Override // org.springblade.modules.system.entity.User
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof OauthLoginEmployee) {
            OauthLoginEmployee other = (OauthLoginEmployee) o;
            if (other.canEqual(this)) {
                Object this$systemAccount = getSystemAccount();
                Object other$systemAccount = other.getSystemAccount();
                return this$systemAccount == null ? other$systemAccount == null : this$systemAccount.equals(other$systemAccount);
            }
            return false;
        }
        return false;
    }
 
    @Override // org.springblade.modules.system.entity.User
    protected boolean canEqual(final Object other) {
        return other instanceof OauthLoginEmployee;
    }
 
    @Override // org.springblade.modules.system.entity.User
    public int hashCode() {
        Object $systemAccount = getSystemAccount();
        int result = (1 * 59) + ($systemAccount == null ? 43 : $systemAccount.hashCode());
        return result;
    }
 
    @Override // org.springblade.modules.system.entity.User
    public String toString() {
        return "OauthLoginEmployee(systemAccount=" + getSystemAccount() + ")";
    }
 
    public String getSystemAccount() {
        return this.systemAccount;
    }
 
    @Override // org.springblade.modules.system.entity.User
    public void setEmployeeId(Long employeeId) {
        super.setEmployeeId(employeeId);
        setId(employeeId);
    }
}