2021-12-21 10:15:12 +08:00
|
|
|
package com.ruoyi.system.mapper;
|
|
|
|
|
|
2022-01-18 13:16:15 +00:00
|
|
|
import com.ruoyi.common.core.mapper.BaseMapperPlus;
|
2021-12-21 10:15:12 +08:00
|
|
|
import com.ruoyi.system.domain.SysUserRole;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 用户与角色关联表 数据层
|
|
|
|
|
*
|
|
|
|
|
* @author Lion Li
|
|
|
|
|
*/
|
2022-01-18 13:16:15 +00:00
|
|
|
public interface SysUserRoleMapper extends BaseMapperPlus<SysUserRoleMapper, SysUserRole, SysUserRole> {
|
2021-12-21 10:15:12 +08:00
|
|
|
|
2022-03-19 14:05:07 +08:00
|
|
|
Long selectUserIdByRoleId(Long roleId);
|
|
|
|
|
|
2021-12-21 10:15:12 +08:00
|
|
|
}
|