📄 product.java
字号:
package com.lideedu.yame.tree.pojos;
public class Product implements java.io.Serializable {
private Integer productId;
private ProductCategory productCategory;
private String productName;
private Double productPrice;
public Product() {
}
public Integer getProductId() {
return this.productId;
}
public void setProductId(Integer productId) {
this.productId = productId;
}
public ProductCategory getProductCategory() {
return this.productCategory;
}
public void setProductCategory(ProductCategory productCategory) {
this.productCategory = productCategory;
}
public String getProductName() {
return this.productName;
}
public void setProductName(String productName) {
this.productName = productName;
}
public Double getProductPrice() {
return this.productPrice;
}
public void setProductPrice(Double productPrice) {
this.productPrice = productPrice;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -