73 lines
1.6 KiB
Java
73 lines
1.6 KiB
Java
|
package com.novelbook.android.db;
|
||
|
|
||
|
|
||
|
import org.litepal.crud.LitePalSupport;
|
||
|
|
||
|
|
||
|
public class BookChapter extends LitePalSupport {
|
||
|
private int id;
|
||
|
private int bookId;
|
||
|
private String bookpath;
|
||
|
private String chapterName;
|
||
|
private long bookChapterStartPos;
|
||
|
private String chapterUrl;
|
||
|
private int length;
|
||
|
private String chapterPath;
|
||
|
|
||
|
public String getChapterPath() {
|
||
|
return chapterPath;
|
||
|
}
|
||
|
public void setChapterPath(String chapterPath) {
|
||
|
this.chapterPath = chapterPath;
|
||
|
}
|
||
|
public String getChapterUrl() {
|
||
|
return chapterUrl;
|
||
|
}
|
||
|
public void setChapterUrl(String chapterUrl) {
|
||
|
this.chapterUrl = chapterUrl;
|
||
|
}
|
||
|
public int getLength() {
|
||
|
return length;
|
||
|
}
|
||
|
public void setLength(int length) {
|
||
|
this.length = length;
|
||
|
}
|
||
|
public int getId() {
|
||
|
return id;
|
||
|
}
|
||
|
public int getBookId() {
|
||
|
return bookId;
|
||
|
}
|
||
|
public void setBookId(int bookId) {
|
||
|
this.bookId = bookId;
|
||
|
}
|
||
|
public void setId(int id) {
|
||
|
this.id = id;
|
||
|
}
|
||
|
|
||
|
public String getBookpath() {
|
||
|
return bookpath;
|
||
|
}
|
||
|
|
||
|
public void setBookpath(String bookpath) {
|
||
|
this.bookpath = bookpath;
|
||
|
}
|
||
|
|
||
|
public String getChapterName() {
|
||
|
return chapterName;
|
||
|
}
|
||
|
|
||
|
public void setChapterName(String chapterName) {
|
||
|
this.chapterName = chapterName;
|
||
|
}
|
||
|
|
||
|
public long getBookChapterStartPos() {
|
||
|
return bookChapterStartPos;
|
||
|
}
|
||
|
|
||
|
public void setBookChapterStartPos(long bookChapterStartPos) {
|
||
|
this.bookChapterStartPos = bookChapterStartPos;
|
||
|
}
|
||
|
}
|
||
|
|