📄 statisticvo.java
字号:
package bo;
public class StatisticVO {
private String productName;
private Integer quantity;
private Double totalPrice;
public StatisticVO() {
}
public void setProductName(String productName) {
this.productName = productName;
}
public void setQuantity(Integer quantity) {
this.quantity = quantity;
}
public void setTotalPrice(Double totalPrice) {
this.totalPrice = totalPrice;
}
public String getProductName() {
return productName;
}
public Integer getQuantity() {
return quantity;
}
public Double getTotalPrice() {
return totalPrice;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -