📄 book_info.java
字号:
package com.ww.j2ee;
public class Book_info {
String book_id;
String bookname;
String booktype;
String price;
String booknumber;
public String getBook_id() {
return book_id;
}
public void setBook_id(String book_id) {
this.book_id = book_id;
}
public String getBookname() {
return bookname;
}
public void setBookname(String bookname) {
this.bookname = bookname;
}
public String getBooknumber() {
return booknumber;
}
public void setBooknumber(String booknumber) {
this.booknumber = booknumber;
}
public String getBooktype() {
return booktype;
}
public void setBooktype(String booktype) {
this.booktype = booktype;
}
public String getPrice() {
return price;
}
public void setPrice(String price) {
this.price = price;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -