课程管理

This commit is contained in:
none
2023-02-26 17:46:13 +08:00
parent 6b4d40d758
commit 3974f068e0
8 changed files with 357 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
package xyz.playedu.api.mapper;
import org.apache.ibatis.annotations.Mapper;
import xyz.playedu.api.domain.CourseChapter;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* @author tengteng
* @description 针对表【course_chapters】的数据库操作Mapper
* @createDate 2023-02-26 17:34:01
* @Entity xyz.playedu.api.domain.CourseChapter
*/
@Mapper
public interface CourseChapterMapper extends BaseMapper<CourseChapter> {
}