?? book.java
字號:
package com.aptech.demo.itext.web;
public class Book implements java.io.Serializable {
private static final long serialVersionUID = 1L;
private Integer id;
private String bookName;
private String author;
private String publisher;
private Double price;
public Book() {
}
public Book(String bookname, String author, String publisher, Double price) {
this.bookName = bookname;
this.author = author;
this.publisher = publisher;
this.price = price;
}
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getBookName() {
return this.bookName;
}
public void setBookName(String bookname) {
this.bookName = bookname;
}
public String getAuthor() {
return this.author;
}
public void setAuthor(String author) {
this.author = author;
}
public String getPublisher() {
return this.publisher;
}
public void setPublisher(String publisher) {
this.publisher = publisher;
}
public Double getPrice() {
return this.price;
}
public void setPrice(Double price) {
this.price = price;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -