| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 | | package com.ruoyi.rongcloud.service; |  |   |  | import java.util.List; |  | import java.util.Map; |  |   |  | /** |  |  * @Description: |  |  * @ClassName: RongCloudService |  |  * @Author: 刘苏义 |  |  * @Date: 2023年07月15日16:48:36 |  |  * @Version: 1.0 |  |  **/ |  | public interface RongCloudService { |  |   |  |     String getToken(String userId,String name); |  |     Map<String,Object>  checkOnline(List<String>userIds); |  |     Boolean checkOnline(String userId); |  | } | 
 |