package bdqn.newsMange.entity;
/**
* 新闻类别实体类
* @author Administrator
*
*/
public class categoryTB {
private int categoryID;//编号
private String categoryName;//类别名
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;
}
}