shopvo.java

来自「模拟网上购物系统」· Java 代码 · 共 52 行

JAVA
52
字号
package vo;

public class shopVO {
	
	private int proid;
	private String picture;
    private String proname;
    private int price;
    private int memberprice;
    private int num;
    
	public int getMemberprice() {
		return memberprice;
	}
	public void setMemberprice(int memberprice) {
		this.memberprice = memberprice;
	}
	public int getNum() {
		return num;
	}
	public void setNum(int num) {
		this.num = num;
	}
	public String getPicture() {
		return picture;
	}
	public void setPicture(String picture) {
		this.picture = picture;
	}
	public int getPrice() {
		return price;
	}
	public void setPrice(int price) {
		this.price = price;
	}
	public int getProid() {
		return proid;
	}
	public void setProid(int proid) {
		this.proid = proid;
	}
	public String getProname() {
		return proname;
	}
	public void setProname(String proname) {
		this.proname = proname;
	}
    
    

}

⌨️ 快捷键说明

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