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

📄 revertguestinfoform.java

📁 留言簿架构 oracle 9i + jsp + struts 留言簿基本功能: 1 、客人签写留言 2 、基本的UBB支持
💻 JAVA
字号:
package com.guestbook.form;

import org.apache.struts.action.*;

import javax.servlet.http.*;

public class RevertGuestInfoForm extends ActionForm
{
	private int id;
	private String guestReply;
	
	public int getId()
	{
		return this.id;
	}
	public void setId( int id )
	{
		this.id = id;
	}

	public String getGuestReply()
	{
		return this.guestReply;
	}
	public void setGuestReply( String guestReply )
	{
		this.guestReply = guestReply;
	}	
}

⌨️ 快捷键说明

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