www.pudn.com > 200402121144312230.rar > MysqlBoard.java
package net.ijsp.news.news.mysql; /** *Title: 栏目相关信息
*Description:
*Copyright: Copyright (c) 2003
*Company: ijsp.net
* @author ccjsmile * @version 1.0 */ import net.ijsp.news.news.Board; public class MysqlBoard implements Board { private int id,orders,parentID; private String boardName; /** * 栏目ID */ public void setID(int id) { this.id = id; } public int getID() { return id; } /** * 栏目名 */ public void setBoardname(String boardName) { this.boardName = boardName; } public String getBoardname() { return boardName; } /** * 上级ID */ public void setParentID(int parentID) { this.parentID = parentID; } public int getParentID() { return parentID; } /** * 栏目排序 */ public void setOrders(int orders) { this.orders = orders; } public int getOrders() { return orders; } }