statisticvo.java

来自「bs_网上购物系统每个例子文件夹都附有数据库表、程序源文件和一个war包(或者j」· Java 代码 · 共 35 行

JAVA
35
字号
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 + =
减小字号Ctrl + -
显示快捷键?