product_bean.java

来自「jsp servlet java bean实现的购物车代码」· Java 代码 · 共 31 行

JAVA
31
字号
package com;

public class Product_Bean {
    private String name;
    private float price;
    private int num;
    public String getName() {
        return name;
    }

    public float getPrice() {
        return price;
    }

    public int getNum() {
        return num;
    }

    public void setName(String name) {
        this.name = name;
    }

    public void setPrice(float price) {
        this.price = price;
    }

    public void setNum(int num) {
        this.num = num;
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?