📄 product.java
字号:
package com.Chang.service.dao.hibernate.po;
/**
* Product generated by MyEclipse - Hibernate Tools
*/
public class Product implements java.io.Serializable {
// Fields
private String productid;
private String catid;
private String image;
// Constructors
/** default constructor */
public Product() {
}
/** constructor with id */
public Product(String productid) {
this.productid = productid;
}
// Property accessors
public String getProductid() {
return this.productid;
}
public void setProductid(String productid) {
this.productid = productid;
}
public String getCatid() {
return this.catid;
}
public void setCatid(String catid) {
this.catid = catid;
}
public String getImage() {
return this.image;
}
public void setImage(String image) {
this.image = image;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -