Files
nuttyreading-java/src/main/java/com/peanut/modules/book/dao/BookTeachCommentDao.java
2023-11-29 14:49:29 +08:00

10 lines
289 B
Java

package com.peanut.modules.book.dao;
import com.github.yulichang.base.MPJBaseMapper;
import com.peanut.modules.book.entity.BookTeachCommentEntity;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface BookTeachCommentDao extends MPJBaseMapper<BookTeachCommentEntity> {
}