?? 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 + -