📄 products.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -