mirror of
https://github.com/201206030/novel.git
synced 2025-06-25 00:26:39 +00:00
集成后台管理系统,上线智能爬虫程序
This commit is contained in:
@ -0,0 +1,45 @@
|
||||
package xyz.zinglizingli.books.po;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class BookIndex implements Serializable {
|
||||
private Long id;
|
||||
|
||||
private Long bookId;
|
||||
|
||||
private Integer indexNum;
|
||||
|
||||
private String indexName;
|
||||
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getBookId() {
|
||||
return bookId;
|
||||
}
|
||||
|
||||
public void setBookId(Long bookId) {
|
||||
this.bookId = bookId;
|
||||
}
|
||||
|
||||
public Integer getIndexNum() {
|
||||
return indexNum;
|
||||
}
|
||||
|
||||
public void setIndexNum(Integer indexNum) {
|
||||
this.indexNum = indexNum;
|
||||
}
|
||||
|
||||
public String getIndexName() {
|
||||
return indexName;
|
||||
}
|
||||
|
||||
public void setIndexName(String indexName) {
|
||||
this.indexName = indexName == null ? null : indexName.trim();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user