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; } }