@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
ResMessage that = (ResMessage) o;
return new EqualsBuilder()
.append(channelId, that.channelId)
.append(userId, that.userId)
.append(userName, that.userName)
.append(userRights, that.userRights)
.append(premium, that.premium)
.append(hideIcon, that.hideIcon)
.append(mobile, that.mobile)
.append(payments, that.payments)
.append(paidsmiles, that.paidsmiles)
.append(messageId, that.messageId)
.append(timestamp, that.timestamp)
.append(color, that.color)
.append(text, that.text)
.isEquals();
}
ResMessage.java 文件源码
java
阅读 30
收藏 0
点赞 0
评论 0
项目:Java-GoodGame-Api-Wrapper
作者:
评论列表
文章目录