懒羊羊
2023-08-30 1ac2bc1590406d9babec036e154d8d08f34a6aa1
提交 | 用户 | 时间
1ac2bc 1 package cn.stylefeng.guns.sys.modular.rest.mapper;
2
3 import cn.stylefeng.guns.base.pojo.node.ZTreeNode;
4 import cn.stylefeng.guns.sys.modular.rest.entity.RestRole;
5 import com.baomidou.mybatisplus.core.mapper.BaseMapper;
6 import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
7 import org.apache.ibatis.annotations.Param;
8
9 import java.util.List;
10 import java.util.Map;
11
12 /**
13  * <p>
14  * 角色表 Mapper 接口
15  * </p>
16  *
17  * @author stylefeng
18  * @since 2018-12-07
19  */
20 public interface RestRoleMapper extends BaseMapper<RestRole> {
21
22     /**
23      * 根据条件查询角色列表
24      *
25      * @return
26      * @date 2017年2月12日 下午9:14:34
27      */
28     Page<Map<String, Object>> selectRoles(@Param("page") Page page, @Param("condition") String condition);
29
30     /**
31      * 删除某个角色的所有权限
32      *
33      * @param roleId 角色id
34      * @return
35      * @date 2017年2月13日 下午7:57:51
36      */
37     int deleteRolesById(@Param("roleId") Long roleId);
38
39     /**
40      * 获取角色列表树
41      *
42      * @return
43      * @date 2017年2月18日 上午10:32:04
44      */
45     List<ZTreeNode> roleTreeList();
46
47     /**
48      * 获取角色列表树
49      *
50      * @return
51      * @date 2017年2月18日 上午10:32:04
52      */
53     List<ZTreeNode> roleTreeListByRoleId(Long[] roleId);
54
55 }