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
package com.govmade.modules.system.service;
import java.util.Map;
import java.util.Set;
import com.baomidou.mybatisplus.service.IService;
import com.govmade.common.utils.PageUtils;
import com.govmade.modules.system.entity.DepartEntity;
/**
* 系统管理 - 部门设置
*
* @author 刘弈臻
* @date 2018年8月8日
*/
public interface DepartService extends IService<DepartEntity>{
/**
* 查看部门列表
*/
PageUtils queryPage(Map<String, Object> params);
/**
* 保存或修改部门
*/
void save(DepartEntity depart);
/**
* 删除部门
*/
void deleteDepart(DepartEntity depart);
/**
* 部门查重
*/
Integer checkDepart(String name);
}