| | |
| | | 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 org.w3c.dom.stylesheets.LinkStyle; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | Integer update(Department department); |
| | | |
| | | List<Department> gets(); |
| | | |
| | | List<DepartmentResponseVM> page(DepartmentResponseVM departmentResponseVM); |
| | | |
| | | Department getName(String name); |
| | | |
| | | Department getById(Integer id); |
| | | |
| | | List<Integer> selectByAdminId(Integer id); |
| | | } |