favprovo.java
来自「模拟网上购物系统」· Java 代码 · 共 51 行
JAVA
51 行
package vo;
public class favproVO {
private int userid;
private int proid;
private String picture;
private String proname;
private int price;
private int memberprice;
public int getMemberprice() {
return memberprice;
}
public void setMemberprice(int memberprice) {
this.memberprice = memberprice;
}
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;
}
public int getUserid() {
return userid;
}
public void setUserid(int userid) {
this.userid = userid;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?