This commit is contained in:
wangjinlei
2023-09-21 17:07:36 +08:00
parent 1810d6efd7
commit ac80121377
6 changed files with 48 additions and 273 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.UserEbookBuyEntity;
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-10-18 16:28:20
*/
@Mapper
public interface UserEbookBuyDao extends BaseMapper<UserEbookBuyEntity> {
public interface UserEbookBuyDao extends MPJBaseMapper<UserEbookBuyEntity> {
}