Files
nuttyreading-java/src/main/java/com/peanut/modules/common/dao/CourseDao.java
wangjinlei 0a8db2b2cc 1
2024-03-21 16:26:13 +08:00

10 lines
263 B
Java

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> {
}