160 lines
3.1 KiB
Java
160 lines
3.1 KiB
Java
|
package com.novelbook.android.db;
|
||
|
|
||
|
|
||
|
import org.litepal.crud.LitePalSupport;
|
||
|
|
||
|
import java.io.Serializable;
|
||
|
|
||
|
|
||
|
public class Novel extends LitePalSupport implements Serializable{
|
||
|
private int id;
|
||
|
private String novelId;
|
||
|
private String novelName;
|
||
|
private String domain;
|
||
|
private String muluUrl;
|
||
|
private String novelPath;
|
||
|
private long lastReadPos;
|
||
|
private long lastReadChapt=1;
|
||
|
private String charset;
|
||
|
private String novelType;
|
||
|
private String novelType2;
|
||
|
private String author;
|
||
|
private String cover;
|
||
|
private String lastestChapterName;
|
||
|
private String description;
|
||
|
private long lastUpateTime;
|
||
|
|
||
|
public int getId() {
|
||
|
return id;
|
||
|
}
|
||
|
|
||
|
public void setId(int id) {
|
||
|
this.id = id;
|
||
|
}
|
||
|
|
||
|
public String getNovelId() {
|
||
|
return novelId;
|
||
|
}
|
||
|
|
||
|
public void setNovelId(String novelId) {
|
||
|
this.novelId = novelId;
|
||
|
}
|
||
|
|
||
|
public String getNovelName() {
|
||
|
return novelName;
|
||
|
}
|
||
|
|
||
|
public void setNovelName(String novelName) {
|
||
|
this.novelName = novelName;
|
||
|
}
|
||
|
|
||
|
public String getDomain() {
|
||
|
return domain;
|
||
|
}
|
||
|
|
||
|
public void setDomain(String domain) {
|
||
|
this.domain = domain;
|
||
|
}
|
||
|
|
||
|
public String getMuluUrl() {
|
||
|
return muluUrl;
|
||
|
}
|
||
|
|
||
|
public void setMuluUrl(String muluUrl) {
|
||
|
this.muluUrl = muluUrl;
|
||
|
}
|
||
|
|
||
|
public String getNovelPath() {
|
||
|
return novelPath;
|
||
|
}
|
||
|
|
||
|
public void setNovelPath(String novelPath) {
|
||
|
this.novelPath = novelPath;
|
||
|
}
|
||
|
|
||
|
public long getLastReadPos() {
|
||
|
return lastReadPos;
|
||
|
}
|
||
|
|
||
|
public void setLastReadPos(long lastReadPos) {
|
||
|
this.lastReadPos = lastReadPos;
|
||
|
}
|
||
|
|
||
|
public long getLastReadChapt() {
|
||
|
return lastReadChapt;
|
||
|
}
|
||
|
|
||
|
public void setLastReadChapt(long lastReadChapt) {
|
||
|
this.lastReadChapt = lastReadChapt;
|
||
|
}
|
||
|
|
||
|
public String getCharset() {
|
||
|
return charset;
|
||
|
}
|
||
|
|
||
|
public void setCharset(String charset) {
|
||
|
this.charset = charset;
|
||
|
}
|
||
|
|
||
|
public String getNovelType() {
|
||
|
return novelType;
|
||
|
}
|
||
|
|
||
|
public void setNovelType(String novelType) {
|
||
|
this.novelType = novelType;
|
||
|
}
|
||
|
|
||
|
public String getNovelType2() {
|
||
|
return novelType2;
|
||
|
}
|
||
|
|
||
|
public void setNovelType2(String novelType2) {
|
||
|
this.novelType2 = novelType2;
|
||
|
}
|
||
|
|
||
|
public String getAuthor() {
|
||
|
return author;
|
||
|
}
|
||
|
|
||
|
public void setAuthor(String author) {
|
||
|
this.author = author;
|
||
|
}
|
||
|
|
||
|
public String getCover() {
|
||
|
return cover;
|
||
|
}
|
||
|
|
||
|
public void setCover(String cover) {
|
||
|
this.cover = cover;
|
||
|
}
|
||
|
|
||
|
public String getLastestChapterName() {
|
||
|
return lastestChapterName;
|
||
|
}
|
||
|
|
||
|
public void setLastestChapterName(String lastestChapterName) {
|
||
|
this.lastestChapterName = lastestChapterName;
|
||
|
}
|
||
|
|
||
|
public String getDescription() {
|
||
|
return description;
|
||
|
}
|
||
|
|
||
|
public void setDescription(String description) {
|
||
|
this.description = description;
|
||
|
}
|
||
|
|
||
|
public long getLastUpateTime() {
|
||
|
return lastUpateTime;
|
||
|
}
|
||
|
|
||
|
public void setLastUpateTime(long lastUpateTime) {
|
||
|
this.lastUpateTime = lastUpateTime;
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
}
|