Files
nuttyreading-java/src/main/java/com/peanut/modules/common/dao/UserEbookBuyDao.java
wangjinlei 3cef570c97 1
2024-03-15 10:19:03 +08:00

21 lines
464 B
Java

package com.peanut.modules.common.dao;
import com.github.yulichang.base.MPJBaseMapper;
import com.peanut.modules.common.entity.UserEbookBuyEntity;
import org.apache.ibatis.annotations.Mapper;
import java.util.List;
/**
* 用户购买书籍表
*
* @author yl
* @email yl328572838@163.com
* @date 2022-10-18 16:28:20
*/
@Mapper
public interface UserEbookBuyDao extends MPJBaseMapper<UserEbookBuyEntity> {
List<Integer> getUserBookId(Integer userId);
}