This commit is contained in:
wangjinlei
2024-03-21 16:45:29 +08:00
parent 0a8db2b2cc
commit 20c9e2249b
6 changed files with 118 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package com.peanut.modules.common.dao;
import com.github.yulichang.base.MPJBaseMapper;
import com.peanut.modules.common.entity.CourseCatalogueChapterEntity;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface CourseCatalogueChapterDao extends MPJBaseMapper<CourseCatalogueChapterEntity> {
}

View File

@@ -0,0 +1,9 @@
package com.peanut.modules.common.dao;
import com.github.yulichang.base.MPJBaseMapper;
import com.peanut.modules.common.entity.CourseCatalogueChapterVideoEntity;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface CourseCatalogueChapterVideoDao extends MPJBaseMapper<CourseCatalogueChapterVideoEntity> {
}

View File

@@ -0,0 +1,9 @@
package com.peanut.modules.common.dao;
import com.github.yulichang.base.MPJBaseMapper;
import com.peanut.modules.common.entity.CourseCatalogueEntity;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface CourseCatalogueDao extends MPJBaseMapper<CourseCatalogueEntity> {
}