www.pudn.com > 200402121144312230.rar > MysqlNews.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.News; public class MysqlNews implements News { private int id,boardID; private String editer,title,newsFile,content; private long date; /** * 新闻ID */ public void setID(int id) { this.id = id; } public int getID() { return id; } /** * 栏目ID名 */ public void setBoardID(int boardID) { this.boardID = boardID; } public int getBoardID() { return boardID; } /** * 编 辑名 */ public void setEditer(String editer){ this.editer = editer; } public String getEditer() { return editer; } /** * 新闻标题 */ public void setTitle(String title) { this.title = title; } public String getTitle() { return title; } /** * 新闻文件 */ public void setNewsFile(String newsFile) { this.newsFile = newsFile; } public String getNewsFile() { return newsFile; } /** * 发布时间 */ public void setDate(long date) { this.date = date; } public long getDate() { return date; } /** * 新闻内容 */ public void setContent(String content) { this.content = content; } public String getContent() { return content; } }