📄 book.java
字号:
package cn.dang.entity;
public class Book {
//book表表示列
private int id;
//书名
private String bookName;
//图书编号
private String isbn;
private double DDPrice;
//出版时间
private String publishTime;
//价格
private double price;
//搜索量
private int clickCount;
//折扣率
private double free;
//内容简介
private String description;
private Author author;
//用户评论星级
private int point;
//封面
private String cover;
private BookType bookType;
private Concem concem;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getBookName() {
return bookName;
}
public void setBookName(String bookName) {
this.bookName = bookName;
}
public String getIsbn() {
return isbn;
}
public void setIsbn(String isbn) {
this.isbn = isbn;
}
public String getPublishTime() {
return publishTime;
}
public void setPublishTime(String publishTime) {
this.publishTime = publishTime;
}
public double getPrice() {
return price;
}
public void setPrice(double price) {
this.price = price;
}
public int getClickCount() {
return clickCount;
}
public void setClickCount(int clickCount) {
this.clickCount = clickCount;
}
public double getFree() {
return free;
}
public void setFree(double free) {
this.free = free;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public Author getAuthor() {
return author;
}
public void setAuthor(Author author) {
this.author = author;
}
public int getPoint() {
return point;
}
public void setPoint(int point) {
this.point = point;
}
public String getCover() {
return cover;
}
public void setCover(String cover) {
this.cover = cover;
}
public BookType getBookType() {
return bookType;
}
public void setBookType(BookType bookType) {
this.bookType = bookType;
}
public Concem getConcem() {
return concem;
}
public void setConcem(Concem concem) {
this.concem = concem;
}
public double getDDPrice() {
return DDPrice;
}
public void setDDPrice(double price) {
DDPrice = price;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -