提交 | 用户 | 时间
|
1ac2bc
|
1 |
package cn.stylefeng.guns.sys.modular.system.mapper; |
懒 |
2 |
|
|
3 |
import cn.stylefeng.guns.base.pojo.node.LayuiTreeNode; |
|
4 |
import cn.stylefeng.guns.base.pojo.node.TreeviewNode; |
|
5 |
import cn.stylefeng.guns.base.pojo.node.ZTreeNode; |
|
6 |
import cn.stylefeng.guns.sys.modular.system.entity.Dept; |
|
7 |
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
|
8 |
import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
|
9 |
import org.apache.ibatis.annotations.Param; |
|
10 |
|
|
11 |
import java.util.List; |
|
12 |
import java.util.Map; |
|
13 |
|
|
14 |
/** |
|
15 |
* <p> |
|
16 |
* 部门表 Mapper 接口 |
|
17 |
* </p> |
|
18 |
* |
|
19 |
* @author stylefeng |
|
20 |
* @since 2018-12-07 |
|
21 |
*/ |
|
22 |
public interface DeptMapper extends BaseMapper<Dept> { |
|
23 |
|
|
24 |
/** |
|
25 |
* 获取ztree的节点列表 |
|
26 |
*/ |
|
27 |
List<ZTreeNode> tree(); |
|
28 |
|
|
29 |
/** |
|
30 |
* 获取layui树形节点 |
|
31 |
*/ |
|
32 |
List<LayuiTreeNode> layuiTree(); |
|
33 |
|
|
34 |
/** |
|
35 |
* 获取所有部门列表 |
|
36 |
*/ |
|
37 |
Page<Map<String, Object>> list(@Param("page") Page page, @Param("condition") String condition, @Param("deptId") Long deptId); |
|
38 |
|
|
39 |
/** |
|
40 |
* 获取所有部门树列表 |
|
41 |
*/ |
|
42 |
List<TreeviewNode> treeviewNodes(); |
|
43 |
|
|
44 |
/** |
|
45 |
* where pids like '' |
|
46 |
*/ |
|
47 |
List<Dept> likePids(@Param("deptId") Long deptId); |
|
48 |
} |