jinlin
2024-03-04 b3e1d3cc68497198ac3cc98377c96cf2478b9022
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
31
32
33
34
35
36
/**
 * Copyright (c) 2018 人人开源 All rights reserved.
 *
 * https://www.renren.io
 *
 * 版权所有,侵权必究!
 */
 
package com.zt.modules.sys.dao;
 
import com.zt.common.dao.BaseDao;
import com.zt.core.sys.model.SysDept;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
import java.util.Map;
 
/**
 * 部门
 *
 * @author hehz
 */
@Mapper
public interface SysDeptDao extends BaseDao<SysDept> {
 
    List<SysDept> getAll();
 
    List<SysDept> getList(Map<String, Object> params);
 
    SysDept getById(Long id);
 
    List<SysDept> getListByParent(Map<String, Object> params);
 
 
    List<SysDept> getDeptList3();
}