新闻发布项目——实体类(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;
	}
	
}

原文地址:https://www.cnblogs.com/a1111/p/12816568.html