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