goupan
2024-04-09 a2e45f7216838aa7ee7212955911ae2e300a9ec7
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);
}