新闻发布项目——实体类(categoryTB)

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;
	}
	
}

posted @ 2016-11-17 22:21  穆雄雄  阅读(181)  评论(0编辑  收藏  举报