yangys
2024-04-05 84dea9976c29ac938fa018b8566c71461b056418
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
package com.qianwen.core.notify.provider.wechat.qy.entity;
 
/* loaded from: blade-starter-notify-9.3.0.0-SNAPSHOT.jar:org/springblade/core/notify/provider/wechat/qy/entity/WeixinGetUidQuery.class */
public class WeixinGetUidQuery {
    private String mobile;
 
    public void setMobile(final String mobile) {
        this.mobile = mobile;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof WeixinGetUidQuery) {
            WeixinGetUidQuery other = (WeixinGetUidQuery) o;
            if (other.canEqual(this)) {
                Object this$mobile = getMobile();
                Object other$mobile = other.getMobile();
                return this$mobile == null ? other$mobile == null : this$mobile.equals(other$mobile);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof WeixinGetUidQuery;
    }
 
    public int hashCode() {
        Object $mobile = getMobile();
        int result = (1 * 59) + ($mobile == null ? 43 : $mobile.hashCode());
        return result;
    }
 
    public String toString() {
        return "WeixinGetUidQuery(mobile=" + getMobile() + ")";
    }
 
    public WeixinGetUidQuery(final String mobile) {
        this.mobile = mobile;
    }
 
    public String getMobile() {
        return this.mobile;
    }
}