This commit is contained in:
wangjinlei
2024-03-21 16:26:13 +08:00
parent e92258dfe6
commit 0a8db2b2cc
15 changed files with 329 additions and 1 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.CourseCategoryEntity;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface CourseCategoryDao extends MPJBaseMapper<CourseCategoryEntity> {
}

View File

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

View File

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

View File

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

View File

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