|
|
|
@ -31,6 +31,10 @@ public class ChapterEntity extends SuperEntity<ChapterEntity> implements Seriali
|
|
|
|
|
private Boolean treeLeaf;
|
|
|
|
|
private Integer treeLevel;
|
|
|
|
|
|
|
|
|
|
private String seoTitle;
|
|
|
|
|
private String seoKeywords;
|
|
|
|
|
private String seoDescription;
|
|
|
|
|
|
|
|
|
|
@TableField(exist=false)
|
|
|
|
|
private List<ChapterEntity> childChapterList;
|
|
|
|
|
|
|
|
|
@ -136,4 +140,28 @@ public class ChapterEntity extends SuperEntity<ChapterEntity> implements Seriali
|
|
|
|
|
this.bookId = bookId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getSeoTitle() {
|
|
|
|
|
return seoTitle;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setSeoTitle(String seoTitle) {
|
|
|
|
|
this.seoTitle = seoTitle;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getSeoKeywords() {
|
|
|
|
|
return seoKeywords;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setSeoKeywords(String seoKeywords) {
|
|
|
|
|
this.seoKeywords = seoKeywords;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getSeoDescription() {
|
|
|
|
|
return seoDescription;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setSeoDescription(String seoDescription) {
|
|
|
|
|
this.seoDescription = seoDescription;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|