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
| package com.mindskip.xzs.service;
|
| import com.mindskip.xzs.domain.Department;
| import com.mindskip.xzs.domain.Question;
|
| import java.util.List;
|
| public interface DepartmentService extends BaseService<Department>{
|
| /**
| * 添加部门
| * @param name
| * @return
| */
| Integer add(String name);
|
| /**
| * 删除部门
| * @param id
| * @return
| */
| Integer remove(Integer id);
|
| /**
| * 修改部门
| * @param department
| * @return
| */
| Integer update(Department department);
|
| /**
| * 查询所有部门
| * @return
| */
| List<Department> gets();
| }
|
|