111
rk
2025-09-15 0544913da2cca58f690f5f12966c214ff08eda7e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package com.doumee.dao.system;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.doumee.dao.system.dto.QuerySystemRoleDTO;
import com.doumee.dao.system.model.SystemRole;
import com.doumee.dao.system.vo.SystemRoleListVO;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
public interface SystemRoleMapper extends BaseMapper<SystemRole> {
 
    /**
     * 查询角色管理列表
     *
     * @param dto 详见QuerySystemRoleDTO
     * @param orderByClause 排序SQL
     * @return List<SystemRoleListVO>
     */
    List<SystemRoleListVO> selectManageList(@Param("dto") QuerySystemRoleDTO dto, @Param("orderByClause") String orderByClause);
 
    /**
     * 根据用户ID查询
     *
     * @param userId 用户ID
     * @return List<SystemRole>
     */
    List<SystemRole> selectByUserId(Integer userId);
 
}