📄 book.java
字号:
package com.cart;
public class Book {
String bookname;
float price;
float agio;
int bookid;
public Book()
{
}
public Book(String bookname, float price, float agio, String press, String pressdate, String ibsn, String content) {
super();
this.bookname = bookname;
this.price = price;
this.agio = agio;
}
public float getAgio() {
return agio;
}
public void setAgio(float agio) {
this.agio = agio;
}
public int getBookid() {
return bookid;
}
public void setBookid(int bookid) {
this.bookid = bookid;
}
public String getBookname() {
return bookname;
}
public void setBookname(String bookname) {
this.bookname = bookname;
}
public float getPrice() {
return price;
}
public void setPrice(float price) {
this.price = price;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -