aijinhui
2023-10-07 2b29a4a26019e3d1692c4b4c76746dba9fac7b22
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);
}