products.java
来自「bs_网上购物系统每个例子文件夹都附有数据库表、程序源文件和一个war包(或者j」· Java 代码 · 共 48 行
JAVA
48 行
package vo;
import java.io.*;
/** @author Hibernate CodeGenerator */
public class Products implements Serializable {
private String productId;
private String name;
private String note;
private Double price;
public void setProductId(String productId) {
this.productId = productId;
}
public void setName(String name) {
this.name = name;
}
public void setPrice(Double price) {
this.price = price;
}
public void setNote(String note) {
this.note = note;
}
public String getProductId() {
return productId;
}
public String getName() {
return name;
}
public Double getPrice() {
return price;
}
public String getNote() {
return note;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?