|
|
@@ -102,6 +102,12 @@ public class ConversationContentServiceImpl extends BaseMybatisDao<ChatMsgUserMa
|
|
|
private ChatMsgOptimizeMapper chatMsgOptimizeMapper;
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
+ * 获取会话内容
|
|
|
+ * @param pageSeq
|
|
|
+ * @param pageLimit
|
|
|
+ * @return
|
|
|
+ */
|
|
|
@Override
|
|
|
public Map<String,Object> pushChatData(Integer pageSeq, Integer pageLimit) {
|
|
|
String message = null;
|
|
|
@@ -431,6 +437,11 @@ public class ConversationContentServiceImpl extends BaseMybatisDao<ChatMsgUserMa
|
|
|
return null;
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 通过id获取名字,先查数据库,没有再按类型去调API查询
|
|
|
+ * @param userId
|
|
|
+ * @return
|
|
|
+ */
|
|
|
@Override
|
|
|
public Map<String,Object> pushGetChatName(String userId) {
|
|
|
Map<String,Object> map = new HashMap<>();
|