This commit is contained in:
wangjinlei
2023-09-21 11:41:57 +08:00
parent 30d8045759
commit 9589946442
17 changed files with 73 additions and 18 deletions

View File

@@ -1,5 +1,6 @@
package com.peanut.modules.book.dao;
import com.github.yulichang.base.MPJBaseMapper;
import com.peanut.modules.book.entity.BookChapterEntity;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Mapper;
@@ -12,6 +13,6 @@ import org.apache.ibatis.annotations.Mapper;
* @date 2022-08-12 09:53:25
*/
@Mapper
public interface BookChapterDao extends BaseMapper<BookChapterEntity> {
public interface BookChapterDao extends MPJBaseMapper<BookChapterEntity> {
}