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

25 lines
558 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.BookChapterContentEntity;
import java.util.Map;
/**
*
*
* @author yl
* @email yl328572838@163.com
* @date 2022-08-16 14:32:06
*/
public interface BookChapterContentService extends IService<BookChapterContentEntity> {
PageUtils queryPage(Map<String, Object> params);
void getBookVoices(Integer id);
boolean getWordChapterParagraph(Integer bookId);
}