You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
690 B
24 lines
690 B
12 months ago
|
package com.teaching.backend.service.courses;
|
||
|
|
||
|
import com.baomidou.mybatisplus.extension.service.IService;
|
||
|
import com.teaching.backend.model.dto.courses.PageDTO;
|
||
|
import com.teaching.backend.model.dto.courses.StudentCoursesDTO;
|
||
|
import com.teaching.backend.model.entity.courses.StudentCourses;
|
||
|
import com.teaching.backend.model.query.CourseQuery;
|
||
|
import com.teaching.backend.model.vo.courses.CoursesVO;
|
||
|
|
||
|
/**
|
||
|
* <p>
|
||
|
* 服务类
|
||
|
* </p>
|
||
|
*
|
||
|
* @author zjh
|
||
|
* @since 2024-06-13
|
||
|
*/
|
||
|
public interface IStudentCoursesService extends IService<StudentCourses> {
|
||
|
|
||
|
String saveCoursesToStudents(StudentCoursesDTO studentCoursesDTO);
|
||
|
|
||
|
PageDTO<CoursesVO> queryCourses(CourseQuery courseQuery);
|
||
|
}
|