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 { PageUtils queryPage(Map params); void getBookVoices(Integer id); boolean getWordChapterParagraph(Integer bookId); }