goupan
2024-04-24 dbebf83224d9aa1ad328d8d34e26d3a1f42597f8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package cn.stylefeng.roses.kernel.system.api;
 
import java.util.List;
 
/**
 * @Author: yx
 * @Date: 2022-12-29 13:27
 */
public interface SysUserRoleApi {
    /**
     * 根据userId查询角色集合
     *
     * @param userId 用户id
     * @return 用户角色集合
     * @author chenjinlong
     * @date 2021/2/3 15:09
     */
    List<Long> findRoleIdsByUserId(Long userId);
}