mirror of
https://github.com/201206030/novel.git
synced 2025-06-24 08:06:39 +00:00
45 lines
827 B
Java
45 lines
827 B
Java
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();
|
|
}
|
|
} |