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

📄 newsform.java

📁 jsp学习交流网
💻 JAVA
字号:
package cfq.struts.actionform;

import org.apache.struts.action.ActionForm;

public class NewsForm extends ActionForm {
	
	private String newstitle;
	
	private String newstontent;

	public String getNewstitle() {
		return newstitle;
	}

	public void setNewstitle(String newstitle) {
		this.newstitle = newstitle;
	}

	public String getNewstontent() {
		return newstontent;
	}

	public void setNewstontent(String newstontent) {
		this.newstontent = newstontent;
	}

}

⌨️ 快捷键说明

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