?? book.java
字號:
package com.ebook.Entity;
public class Book {
private int bookId;
private int categoryId;
private String bookName;
private String author;
private String beforePrice;
private String nowPrice;
private String publishCompany;
private String publishDate;
private String des;
private String image;
public int getBookId() {
return bookId;
}
public void setBookId(int bookId) {
this.bookId = bookId;
}
public int getCategoryId() {
return categoryId;
}
public void setCategoryId(int categoryId) {
this.categoryId = categoryId;
}
public String getBookName() {
return bookName;
}
public void setBookName(String bookName) {
this.bookName = bookName;
}
public String getAuthor() {
return author;
}
public void setAuthor(String author) {
this.author = author;
}
public String getBeforePrice() {
return beforePrice;
}
public void setBeforePrice(String beforePrice) {
this.beforePrice = beforePrice;
}
public String getNowPrice() {
return nowPrice;
}
public void setNowPrice(String nowPrice) {
this.nowPrice = nowPrice;
}
public String getPublishCompany() {
return publishCompany;
}
public void setPublishCompany(String publishCompany) {
this.publishCompany = publishCompany;
}
public String getPublishDate() {
return publishDate;
}
public void setPublishDate(String publishDate) {
this.publishDate = publishDate;
}
public String getDes() {
return des;
}
public void setDes(String des) {
this.des = des;
}
public String getImage() {
return image;
}
public void setImage(String image) {
this.image = image;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -