yangys
2024-05-08 dc40d10f7d8227d8b8216584ed19e4d41c57f0cd
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
package com.qianwen.core.notify.provider.wechat.qy.entity;
 
public class WeixinGetUidResult extends BaseQyResult {
    private String userid;
 
    public void setUserid(final String userid) {
        this.userid = userid;
    }
 
    @Override // com.qianwen.core.notify.provider.wechat.qy.entity.BaseQyResult
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof WeixinGetUidResult) {
            WeixinGetUidResult other = (WeixinGetUidResult) o;
            if (other.canEqual(this)) {
                Object this$userid = getUserid();
                Object other$userid = other.getUserid();
                return this$userid == null ? other$userid == null : this$userid.equals(other$userid);
            }
            return false;
        }
        return false;
    }
 
    @Override // com.qianwen.core.notify.provider.wechat.qy.entity.BaseQyResult
    protected boolean canEqual(final Object other) {
        return other instanceof WeixinGetUidResult;
    }
 
    @Override // com.qianwen.core.notify.provider.wechat.qy.entity.BaseQyResult
    public int hashCode() {
        Object $userid = getUserid();
        int result = (1 * 59) + ($userid == null ? 43 : $userid.hashCode());
        return result;
    }
 
    @Override // com.qianwen.core.notify.provider.wechat.qy.entity.BaseQyResult
    public String toString() {
        return "WeixinGetUidResult(userid=" + getUserid() + ")";
    }
 
    public String getUserid() {
        return this.userid;
    }
}