yangys
2024-04-01 86cdd920b68274185233383f69ddb974052b6b6f
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
package com.qianwen.core.secure;
 
/* loaded from: blade-starter-auth-9.3.0.0-SNAPSHOT.jar:org/springblade/core/secure/TokenInfo.class */
public class TokenInfo {
    private String token;
    private int expire;
 
    public void setToken(final String token) {
        this.token = token;
    }
 
    public void setExpire(final int expire) {
        this.expire = expire;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof TokenInfo) {
            TokenInfo other = (TokenInfo) o;
            if (other.canEqual(this) && getExpire() == other.getExpire()) {
                Object this$token = getToken();
                Object other$token = other.getToken();
                return this$token == null ? other$token == null : this$token.equals(other$token);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof TokenInfo;
    }
 
    public int hashCode() {
        int result = (1 * 59) + getExpire();
        Object $token = getToken();
        return (result * 59) + ($token == null ? 43 : $token.hashCode());
    }
 
    public String toString() {
        return "TokenInfo(token=" + getToken() + ", expire=" + getExpire() + ")";
    }
 
    public String getToken() {
        return this.token;
    }
 
    public int getExpire() {
        return this.expire;
    }
}