⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ubbaddarticleio.java

📁 NTsky新闻发布v1.0(提供JavaBean)
💻 JAVA
字号:
/**
********************************
*   NTsky新闻发布系统V 1.0     *
*   功能:添加文章(基本输入和输出)
*   代码编写:姚君林
*   编写日期:2003/4/5
*	代码修改:
*   修改日期:			
*******************************
*/
package ntsky.admin.article;
public class UBBAddArticleIo{

	public int column;
	public int kind;
	public int radio;
	public String title = null;
	public String content = null;
	public String connection = null;
	public String author = null;
	public String editor = null;
	public String articlefrom = null;
	public String top;

	//栏目
	public void setColumn(int column){
		this.column = column;
	}
	public int getColumn(){
		return this.column;
	}
	//类别
	public void setKind(int kind){
		this.kind = kind;
	}
	public int getKind(){
		return this.kind;
	}
	//按扭
	public void setRadio(int radio){
		this.radio = radio;
	}
	public int getRadio(){
		return this.radio;
	}
	//标题
	public void setTitle(String title){
		this.title = title;
	}
	public String getTitle(){
		return this.title;
	}
	//文章内容
	public void setContent(String content){
		this.content = content;
	}
	public String getContent(){
		return this.content;
	}
	//相关文章
	public void setConnection(String connection){
		this.connection = connection;
	}
	public String getConnection(){
		if(connection == null){
			connection = "";
			return connection;
		}
		return this.connection;
	}
	//作者
	public void setAuthor(String author){
		this.author = author;
	}
	public String getAuthor(){
		return this.author;
	}
	//编辑
	public void setEditor(String editor){
		this.editor = editor;
	}
	public String getEditor(){
		if(editor == null){
			editor = "";
			return editor;
		}
		return this.editor;
	}
	//出处
	public void setArticlefrom(String articlefrom){
		this.articlefrom = articlefrom;
	}
	public String getArticlefrom(){
		if(articlefrom == null){
			articlefrom = "";
			return articlefrom;
		}
		return this.articlefrom;
	}
	//置顶
	public void setTop(String top){
		this.top = top;
	}
	public String getTop(){
		return this.top;
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -