NIMSDK-AOS  9.20.10
QChatMessageQuickCommentDetail.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.model;
2 
3 import java.io.Serializable;
4 import java.util.List;
5 
6 /**
7  * 消息评论详情
8  */
9 public interface QChatMessageQuickCommentDetail extends Serializable {
10 
11  /**
12  * 获取服务器Id
13  * @return
14  */
15  Long getServerId();
16 
17  /**
18  * 获取channelId
19  * @return
20  */
21  Long getChannelId();
22 
23  /**
24  * 获取消息服务端Id
25  * @return
26  */
27  Long getMsgIdServer();
28 
29  /**
30  * 获取总评论数
31  * @return
32  */
33  int getTotalCount();
34 
35  /**
36  * 获取消息评论最后一次操作的时间
37  * @return
38  */
39  long getLastUpdateTime();
40 
41  /**
42  * 获取评论详情列表
43  * @return
44  */
45  List<QChatQuickCommentDetail> getDetails();
46 
47 }
long getLastUpdateTime()
获取消息评论最后一次操作的时间
List< QChatQuickCommentDetail > getDetails()
获取评论详情列表