mirror of
https://github.com/PlayEdu/PlayEdu
synced 2025-06-23 04:12:48 +08:00
21 lines
567 B
Java
21 lines
567 B
Java
package xyz.playedu.api.service;
|
|
|
|
import xyz.playedu.api.domain.CourseDepartment;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @author tengteng
|
|
* @description 针对表【course_department】的数据库操作Service
|
|
* @createDate 2023-02-24 14:53:52
|
|
*/
|
|
public interface CourseDepartmentService extends IService<CourseDepartment> {
|
|
|
|
List<Integer> getCourseIdsByDepIds(Integer[] depIds);
|
|
|
|
List<Integer> getDepIdsByCourseId(Integer courseId);
|
|
|
|
void removeByCourseId(Integer courseId);
|
|
}
|