1.0
xin
2025-04-15 e718afd02965c6a4018506acb1ae99baca0c5645
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
package com.oying.modules.system.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.oying.modules.system.domain.Dept;
import com.oying.modules.system.domain.dto.DeptQueryCriteria;
 
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.util.List;
import java.util.Set;
 
/**
* @author Z
* @date 2019-03-25
*/
public interface DeptService extends IService<Dept> {
 
    /**
     * 查询所有数据
     * @param criteria 条件
     * @param isQuery /
     * @throws Exception /
     * @return /
     */
    List<Dept> queryAll(DeptQueryCriteria criteria, Boolean isQuery) throws Exception;
 
    /**
     * 根据ID查询
     * @param id /
     * @return /
     */
    Dept findById(Long id);
 
    /**
     * 创建
     * @param resources /
     */
    void create(Dept resources);
 
    /**
     * 编辑
     * @param resources /
     */
    void update(Dept resources);
 
    /**
     * 删除
     * @param depts /
     *
     */
    void delete(Set<Dept> depts);
 
    /**
     * 根据PID查询
     * @param pid /
     * @return /
     */
    List<Dept> findByPid(long pid);
 
    /**
     * 根据角色ID查询
     * @param id /
     * @return /
     */
    Set<Dept> findByRoleId(Long id);
 
    /**
     * 导出数据
     * @param depts 待导出的数据
     * @param response /
     * @throws IOException /
     */
    void download(List<Dept> depts, HttpServletResponse response) throws IOException;
 
    /**
     * 获取待删除的机构
     * @param deptList /
     * @param depts /
     * @return /
     */
    Set<Dept> getDeleteDepts(List<Dept> deptList, Set<Dept> depts);
 
    /**
     * 根据ID获取同级与上级数据
     * @param dept /
     * @param depts /
     * @return /
     */
    List<Dept> getSuperior(Dept dept, List<Dept> depts);
 
    /**
     * 构建树形数据
     * @param depts /
     * @return /
     */
    Object buildTree(List<Dept> depts);
 
    /**
     * 获取
     * @param deptList 、
     * @return 、
     */
    List<Long> getDeptChildren(List<Dept> deptList);
 
    /**
     * 验证是否被角色或用户关联
     * @param depts /
     */
    void verification(Set<Dept> depts);
}