27 lines
647 B
Java
27 lines
647 B
Java
package com.peanut.modules.book.service;
|
|
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import com.peanut.common.utils.PageUtils;
|
|
import com.peanut.modules.common.entity.BookChapterEntity;
|
|
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
/**
|
|
*
|
|
*
|
|
* @author yl
|
|
* @email yl328572838@163.com
|
|
* @date 2022-08-12 09:53:25
|
|
*/
|
|
public interface BookChapterService extends IService<BookChapterEntity> {
|
|
|
|
PageUtils queryPage(Map<String, Object> params);
|
|
|
|
PageUtils queryPage1(Map<String, Object> params);
|
|
|
|
// List<BookChapterEntity> getUse(Integer userId);
|
|
List<BookChapterEntity> getUserBookChapter(Integer userId);
|
|
}
|
|
|