疯狂的狮子Li
2022-03-23 4a353896e3ab74e6bd9acda6bebc2fde167f2d00
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.ruoyi.system.mapper;
 
import com.ruoyi.common.core.mapper.BaseMapperPlus;
import com.ruoyi.system.domain.SysUserRole;
 
/**
 * 用户与角色关联表 数据层
 *
 * @author Lion Li
 */
public interface SysUserRoleMapper extends BaseMapperPlus<SysUserRoleMapper, SysUserRole, SysUserRole> {
 
    Long selectUserIdByRoleId(Long roleId);
 
}