📄 buymessbean.java
字号:
/**
*
*/
package com.chinaaccpbean;
/**
* @author Administrator
*
*/
public class BuyMessBean {
private String bookname;
private int quantity;
private double price;
private double total;
/**
* @return bookname
*/
public String getBookname() {
return bookname;
}
/**
* @param bookname 要设置的 bookname
*/
public void setBookname(String bookname) {
this.bookname = bookname;
}
/**
* @return price
*/
public double getPrice() {
return price;
}
/**
* @param price 要设置的 price
*/
public void setPrice(double price) {
this.price = price;
}
/**
* @return quantity
*/
public int getQuantity() {
return quantity;
}
/**
* @param quantity 要设置的 quantity
*/
public void setQuantity(int quantity) {
this.quantity = quantity;
}
/**
* @return total
*/
public double getTotal() {
return total;
}
/**
* @param total 要设置的 total
*/
public void setTotal(double total) {
this.total = total;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -