小说章节定价规则自定义

This commit is contained in:
xiongxiaoyang
2020-11-22 17:15:20 +08:00
parent cd11854eff
commit 31aa3192fd
11 changed files with 140 additions and 66 deletions

View File

@ -22,6 +22,9 @@ public class BookIndex {
@Generated("org.mybatis.generator.api.MyBatisGenerator")
private Byte isVip;
@Generated("org.mybatis.generator.api.MyBatisGenerator")
private Integer bookPrice;
@Generated("org.mybatis.generator.api.MyBatisGenerator")
private Date createTime;
@ -88,6 +91,16 @@ public class BookIndex {
this.isVip = isVip;
}
@Generated("org.mybatis.generator.api.MyBatisGenerator")
public Integer getBookPrice() {
return bookPrice;
}
@Generated("org.mybatis.generator.api.MyBatisGenerator")
public void setBookPrice(Integer bookPrice) {
this.bookPrice = bookPrice;
}
@Generated("org.mybatis.generator.api.MyBatisGenerator")
public Date getCreateTime() {
return createTime;