电子屏项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

25 lines
491 B

  1. package com.yzx.webebook.presenter;
  2. import com.yzx.webebook.presenter.base.BasePresenter;
  3. import com.yzx.webebook.widget.page.TxtChapter;
  4. import org.jetbrains.annotations.NotNull;
  5. import java.util.List;
  6. public class ReadPresenter extends BasePresenter<ReadView> {
  7. public ReadPresenter(@NotNull ReadView view) {
  8. super(view);
  9. }
  10. public void loadCategory(String bookId){
  11. }
  12. public void loadChapter(String bookId, List<TxtChapter> bookChapterList){
  13. }
  14. }