?? category.java
字號(hào):
package org.itfuture.www.po;
import java.util.HashSet;
import java.util.Set;
/**
* Category generated by MyEclipse - Hibernate Tools
*/
public class Category implements java.io.Serializable {
// Fields
private String catid;
private String name;
private String descn;
private Set products = new HashSet(0);
// Constructors
/** default constructor */
public Category() {
}
/** full constructor */
public Category(String name, String descn, Set products) {
this.name = name;
this.descn = descn;
this.products = products;
}
// Property accessors
public String getCatid() {
return this.catid;
}
public void setCatid(String catid) {
this.catid = catid;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getDescn() {
return this.descn;
}
public void setDescn(String descn) {
this.descn = descn;
}
public Set getProducts() {
return this.products;
}
public void setProducts(Set products) {
this.products = products;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -