goodscategory.java
来自「JavaBean+Jsp 开发的《手机商城系统》」· Java 代码 · 共 68 行
JAVA
68 行
package com.test.ps.category;
/*
* public Category
* 09-2-23
*/
public class GoodsCategory {
private int categoryId;//商品类别类
private int parentId; // 父索引
private String categoryName;//商品类别名称
private String categoryDesc;//商品描述
private int categoryLevel;
private int con;
public GoodsCategory() {
}
public int getCategoryId() {
return categoryId;
}
public void setCategoryId(int categoryId) {
this.categoryId = categoryId;
}
public int getParentId() {
return parentId;
}
public void setParentId(int parentId) {
this.parentId = parentId;
}
public String getCategoryName() {
return categoryName;
}
public void setCategoryName(String categoryName) {
this.categoryName = categoryName;
}
public String getCategoryDesc() {
return categoryDesc;
}
public void setCategoryDesc(String categoryDesc) {
this.categoryDesc = categoryDesc;
}
public int getCategoryLevel() {
return categoryLevel;
}
public void setCategoryLevel(int categoryLevel) {
this.categoryLevel = categoryLevel;
}
public int getCon() {
return con;
}
public void setCon(int con) {
this.con = con;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?