yangys
2024-04-04 ed4a5236bab800094be4a8378f5098eebe3de6ac
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
package com.qianwen.smartman.modules.sync.entity;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/sync/entity/QyUserTicket.class */
public class QyUserTicket {
    private String CorpId;
    private String UserId;
    private String DeviceId;
    private String user_ticket;
    private String expires_in;
    private String open_userid;
 
    public void setCorpId(final String CorpId) {
        this.CorpId = CorpId;
    }
 
    public void setUserId(final String UserId) {
        this.UserId = UserId;
    }
 
    public void setDeviceId(final String DeviceId) {
        this.DeviceId = DeviceId;
    }
 
    public void setUser_ticket(final String user_ticket) {
        this.user_ticket = user_ticket;
    }
 
    public void setExpires_in(final String expires_in) {
        this.expires_in = expires_in;
    }
 
    public void setOpen_userid(final String open_userid) {
        this.open_userid = open_userid;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof QyUserTicket) {
            QyUserTicket other = (QyUserTicket) o;
            if (other.canEqual(this)) {
                Object this$CorpId = getCorpId();
                Object other$CorpId = other.getCorpId();
                if (this$CorpId == null) {
                    if (other$CorpId != null) {
                        return false;
                    }
                } else if (!this$CorpId.equals(other$CorpId)) {
                    return false;
                }
                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$DeviceId = getDeviceId();
                Object other$DeviceId = other.getDeviceId();
                if (this$DeviceId == null) {
                    if (other$DeviceId != null) {
                        return false;
                    }
                } else if (!this$DeviceId.equals(other$DeviceId)) {
                    return false;
                }
                Object this$user_ticket = getUser_ticket();
                Object other$user_ticket = other.getUser_ticket();
                if (this$user_ticket == null) {
                    if (other$user_ticket != null) {
                        return false;
                    }
                } else if (!this$user_ticket.equals(other$user_ticket)) {
                    return false;
                }
                Object this$expires_in = getExpires_in();
                Object other$expires_in = other.getExpires_in();
                if (this$expires_in == null) {
                    if (other$expires_in != null) {
                        return false;
                    }
                } else if (!this$expires_in.equals(other$expires_in)) {
                    return false;
                }
                Object this$open_userid = getOpen_userid();
                Object other$open_userid = other.getOpen_userid();
                return this$open_userid == null ? other$open_userid == null : this$open_userid.equals(other$open_userid);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof QyUserTicket;
    }
 
    public int hashCode() {
        Object $CorpId = getCorpId();
        int result = (1 * 59) + ($CorpId == null ? 43 : $CorpId.hashCode());
        Object $UserId = getUserId();
        int result2 = (result * 59) + ($UserId == null ? 43 : $UserId.hashCode());
        Object $DeviceId = getDeviceId();
        int result3 = (result2 * 59) + ($DeviceId == null ? 43 : $DeviceId.hashCode());
        Object $user_ticket = getUser_ticket();
        int result4 = (result3 * 59) + ($user_ticket == null ? 43 : $user_ticket.hashCode());
        Object $expires_in = getExpires_in();
        int result5 = (result4 * 59) + ($expires_in == null ? 43 : $expires_in.hashCode());
        Object $open_userid = getOpen_userid();
        return (result5 * 59) + ($open_userid == null ? 43 : $open_userid.hashCode());
    }
 
    public String toString() {
        return "QyUserTicket(CorpId=" + getCorpId() + ", UserId=" + getUserId() + ", DeviceId=" + getDeviceId() + ", user_ticket=" + getUser_ticket() + ", expires_in=" + getExpires_in() + ", open_userid=" + getOpen_userid() + ")";
    }
 
    public String getCorpId() {
        return this.CorpId;
    }
 
    public String getUserId() {
        return this.UserId;
    }
 
    public String getDeviceId() {
        return this.DeviceId;
    }
 
    public String getUser_ticket() {
        return this.user_ticket;
    }
 
    public String getExpires_in() {
        return this.expires_in;
    }
 
    public String getOpen_userid() {
        return this.open_userid;
    }
}