yanghb
2024-04-15 6bc25b33e90d45904d1843e927fa709dfeb51d7f
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);
}