qirong
2023-06-07 78c3c58e95590e8ff00d9240051fbb9536be485b
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.mindskip.xzs.service;
 
import com.github.pagehelper.PageInfo;
import com.mindskip.xzs.domain.Department;
import com.mindskip.xzs.domain.Question;
import com.mindskip.xzs.viewmodel.admin.department.DepartmentResponseVM;
 
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
     */
    PageInfo<Department> gets(DepartmentResponseVM departmentResponseVM);
}