book.java
来自「网上书店 。根据对网上书店系统的需求分析」· Java 代码 · 共 61 行
JAVA
61 行
package entity;
import java.io.Serializable;
public class Book implements Serializable {
//Fields
private String isbn;
private String title;
private String desc;
private double price;
private String imagePath;
public Book() {
}
// Properties
public String getIsbn() {
return isbn;
}
public void setIsbn(String isbn) {
this.isbn = isbn;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getDesc() {
return desc;
}
public void setDesc(String desc) {
this.desc = desc;
}
public double getPrice() {
return price;
}
public void setPrice(double price) {
this.price = price;
}
public String getImagePath() {
return imagePath;
}
public void setImagePath(String imagePath) {
this.imagePath = imagePath;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?