标签:setup his amp private turn set upd name timestamp
/**
* @author panxuejun 商品类别
*/
public class Category {
private int categoryID;
private String categoryName;
private int parentCategoryID;
// 是否上线
private int ifOnLine;
private Timestamp updateTime;
public Category() {
}
public int getCategoryID() {
return categoryID;
}
public void setCategoryID(int categoryID) {
this.categoryID = categoryID;
}
public String getCategoryName() {
return categoryName;
}
public void setCategoryName(String categoryName) {
this.categoryName = categoryName;
}
public int getParentCategoryID() {
return parentCategoryID;
}
public void setParentCategoryID(int parentCategoryID) {
this.parentCategoryID = parentCategoryID;
}
public int getIfOnLine() {
return ifOnLine;
}
public void setIfOnLine(int ifOnLine) {
this.ifOnLine = ifOnLine;
}
public Timestamp getUpdateTime() {
return updateTime;
}
public void setUpdateTime(Timestamp updateTime) {
this.updateTime = updateTime;
}
}
标签:setup his amp private turn set upd name timestamp
原文地址:http://www.cnblogs.com/panxuejun/p/7500908.html