71a2a8245d
update 更新模块包名 ; delete 移除 sms 模块, oss 模块, framework 模块 (并入 common 模块) ;
18 lines
391 B
Java
18 lines
391 B
Java
package com.ruoyi.system.mapper;
|
|
|
|
import com.ruoyi.common.mybatis.core.mapper.BaseMapperPlus;
|
|
import com.ruoyi.system.domain.SysUserRole;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 用户与角色关联表 数据层
|
|
*
|
|
* @author Lion Li
|
|
*/
|
|
public interface SysUserRoleMapper extends BaseMapperPlus<SysUserRoleMapper, SysUserRole, SysUserRole> {
|
|
|
|
List<Long> selectUserIdsByRoleId(Long roleId);
|
|
|
|
}
|