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