| | |
| | | package com.xinquan.course.service; |
| | | |
| | | import com.xinquan.course.domain.Course; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.xinquan.common.core.utils.page.PageDTO; |
| | | import com.xinquan.course.domain.Course; |
| | | import com.xinquan.course.domain.vo.ClientCourseVO; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | */ |
| | | public interface CourseService extends IService<Course> { |
| | | |
| | | /** |
| | | * 获取课程列表-分页 |
| | | * |
| | | * @param courseTitle 课程标题 |
| | | * @param cateId 分类id |
| | | * @param pageCurr 分页参数,当前页码 |
| | | * @param pageSize 分页参数,每页数量 |
| | | * @return 课程分页列表 |
| | | */ |
| | | PageDTO<ClientCourseVO> getCoursePageList(String courseTitle, Long cateId, Integer pageCurr, |
| | | Integer pageSize); |
| | | } |