部门和分类增加排序和父类修改的api

This commit is contained in:
none
2023-03-14 11:22:36 +08:00
parent 0ebb278f42
commit 75f83415ad
10 changed files with 180 additions and 3 deletions

View File

@@ -37,4 +37,7 @@ public interface DepartmentService extends IService<Department> {
List<Integer> getCourseIdsByDepId(Integer depId);
void changeParent(Integer id, Integer parentId, List<Integer> ids) throws NotFoundException;
void resetSort(List<Integer> ids);
}