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

📄 newsform.java

📁 简单的一个新闻系统。j2ee开发的。对大家学习有帮助。
💻 JAVA
字号:
package com.org.struts.form;

import com.org.hibernate.vo.News;

public class NewsForm{
protected String id;
protected String title;
protected String content;
protected String author;
protected String time;
protected String keyword;
protected Integer     type;
protected News news=new News();
public String getAuthor() {
	return author;
}
public void setAuthor(String author) {
	this.author = author;
}
public String getContent() {
	return content;
}
public void setContent(String content) {
	this.content = content;
}
public String getId() {
	return id;
}
public void setId(String id) {
	this.id = id;
}
public String getKeyword() {
	return keyword;
}
public void setKeyword(String keyword) {
	this.keyword = keyword;
}
public News getNews() {
	return news;
}
public void setNews(News news) {
	this.news = news;
}
public String getTime() {
	return time;
}
public void setTime(String time) {
	this.time = time;
}
public String getTitle() {
	return title;
}
public void setTitle(String title) {
	this.title = title;
}
public Integer  getType() {
	return type;
}
public void setType(Integer  type) {
	this.type = type;
}


}

⌨️ 快捷键说明

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