zhangnaisong
2023-07-21 04194ef9ab92563d61e53a2a644c13a1372f3cc2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 checkOnline(List<String>userIds);
}