1 package com.netease.nimlib.sdk.qchat.model;
3 import androidx.annotation.NonNull;
4 import java.io.Serializable;
5 import java.util.Objects;
15 private final Long serverId;
20 private final Long channelId;
23 this.serverId = serverId;
24 this.channelId = channelId;
42 if (o == null || getClass() != o.getClass()) {
46 return Objects.
equals(serverId, that.serverId) && Objects.equals(channelId, that.channelId);
51 return Objects.hash(serverId, channelId);
56 return "QChatChannelIdInfo{" +
57 "serverId=" + serverId +
58 ", channelId=" + channelId +
QChatChannelIdInfo(long serverId, long channelId)