mirror of
https://gitee.com/dromara/RuoYi-Vue-Plus.git
synced 2026-03-09 08:11:09 +08:00
16 lines
352 B
Java
16 lines
352 B
Java
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);
|
|
|
|
}
|