mirror of
https://github.com/PlayEdu/PlayEdu
synced 2025-12-25 12:22:03 +08:00
完成后台的线上课-学员api接口
This commit is contained in:
@@ -3,16 +3,21 @@ package xyz.playedu.api.mapper;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
import xyz.playedu.api.domain.UserCourseRecord;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import xyz.playedu.api.types.paginate.CourseUserPaginateFilter;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author tengteng
|
||||
* @description 针对表【user_course_records】的数据库操作Mapper
|
||||
* @createDate 2023-03-20 16:41:04
|
||||
* @Entity xyz.playedu.api.domain.UserCourseRecord
|
||||
*/
|
||||
* @author tengteng
|
||||
* @description 针对表【user_course_records】的数据库操作Mapper
|
||||
* @createDate 2023-03-20 16:41:04
|
||||
* @Entity xyz.playedu.api.domain.UserCourseRecord
|
||||
*/
|
||||
@Mapper
|
||||
public interface UserCourseRecordMapper extends BaseMapper<UserCourseRecord> {
|
||||
List<UserCourseRecord> paginate(CourseUserPaginateFilter filter);
|
||||
|
||||
long paginateTotal(CourseUserPaginateFilter filter);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user