111
baizonghao
2023-06-07 c8a659a1e44e1a050ebe0df8d2bc9780b88215cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.mindskip.xzs.repository;
 
import com.mindskip.xzs.domain.Department;
import com.mindskip.xzs.viewmodel.admin.department.DepartmentResponseVM;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
 
@Mapper
public interface DepartmentMapper extends BaseMapper<Department>{
 
    Integer add(Department department);
 
    Integer update(Department department);
 
    List<Department> gets();
 
    List<Department> page(DepartmentResponseVM departmentResponseVM);
}