mirror of
https://github.com/PlayEdu/PlayEdu
synced 2025-12-25 12:22:03 +08:00
删除courseCategory该用resource_category
This commit is contained in:
@@ -1,20 +0,0 @@
|
||||
package xyz.playedu.api.mapper;
|
||||
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
import xyz.playedu.api.domain.CourseCategory;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* @author tengteng
|
||||
* @description 针对表【course_categories】的数据库操作Mapper
|
||||
* @createDate 2023-02-24 13:55:19
|
||||
* @Entity xyz.playedu.api.domain.CourseCategory
|
||||
*/
|
||||
@Mapper
|
||||
public interface CourseCategoryMapper extends BaseMapper<CourseCategory> {
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,20 @@
|
||||
package xyz.playedu.api.mapper;
|
||||
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
import xyz.playedu.api.domain.ResourceCourseCategory;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* @author tengteng
|
||||
* @description 针对表【resource_course_category】的数据库操作Mapper
|
||||
* @createDate 2023-03-09 09:54:22
|
||||
* @Entity xyz.playedu.api.domain.ResourceCourseCategory
|
||||
*/
|
||||
@Mapper
|
||||
public interface ResourceCourseCategoryMapper extends BaseMapper<ResourceCourseCategory> {
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user