products.java
来自「java sql jsp javabean」· Java 代码 · 共 59 行
JAVA
59 行
package com.gc.action;
public class Products {
private int pid;
private String pname;
private double pprice;
private int smallcid;
private int amount;
private String picturepath;
private String pstatus;
public int getPid() {
return pid;
}
public void setPid(int pid) {
this.pid = pid;
}
public String getPname() {
return pname;
}
public void setPname(String pname) {
this.pname = pname;
}
public double getPprice() {
return pprice;
}
public void setPprice(double pprice) {
this.pprice = pprice;
}
public int getSmallcid() {
return smallcid;
}
public void setSmallcid(int smallcid) {
this.smallcid = smallcid;
}
public int getAmount() {
return amount;
}
public void setAmount(int amount) {
this.amount = amount;
}
public String getPstatus() {
return pstatus;
}
public void setPstatus(String pstatus) {
this.pstatus = pstatus;
}
public String getPicturepath() {
return picturepath;
}
public void setPicturepath(String picturepath) {
this.picturepath = picturepath;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?