product.java
来自「一个TSH(tapestry+Hibernate+Spring)配置例子」· Java 代码 · 共 67 行
JAVA
67 行
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 + =
减小字号Ctrl + -
显示快捷键?