Files
nuttyreading-java/src/main/java/com/peanut/modules/book/service/BookChapterContentService.java
cys841515238 2733a60b97 first commit
2023-03-02 16:13:28 +08:00

25 lines
580 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.book.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);
}