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

📄 sysconfigform.java

📁 留言簿架构 oracle 9i + jsp + struts 留言簿基本功能: 1 、客人签写留言 2 、基本的UBB支持
💻 JAVA
字号:
/*
 * Generated by MyEclipse Struts
 * Template path: templates/java/JavaClass.vtl
 */
package com.guestbook.form;

import java.util.Vector;

import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;

/** 
 * MyEclipse Struts
 * Creation date: 09-17-2007
 * 
 * XDoclet definition:
 * @struts.form name="SysConfigForm"
 */
public class SysConfigForm extends ActionForm {
	
	private int id;
	private String guestbookname;
	private String websiteurl;
	private int pagesize;
	private String copyright;
	private String versionnumber;
	private int auditing;
	private int facepic;
	private int ubbpic;
	private int secretly;
	private int displaystyle;
	private int leavewordlength;
	private String filterchar;
	
	public int getId()
	{
		return this.id;
	}
	public void setId( int id )
	{
		this.id = id;
	}

	public String getGuestbookname()
	{
		return this.guestbookname;
	}
	public void setGuestbookname( String guestbookname )
	{
		this.guestbookname = guestbookname;
	}

	public String getWebsiteurl()
	{
		return this.websiteurl;
	}
	public void setWebsiteurl( String websiteurl )
	{
		this.websiteurl = websiteurl;
	}

	public int getPagesize()
	{
		return this.pagesize;
	}
	public void setPagesize( int pagesize )
	{
		this.pagesize = pagesize;
	}

	public String getCopyright()
	{
		return this.copyright;
	}
	public void setCopyright( String copyright )
	{
		this.copyright = copyright;
	}

	public String getVersionnumber()
	{
		return this.versionnumber;
	}
	public void setVersionnumber( String versionnumber )
	{
		this.versionnumber = versionnumber;
	}

	public int getAuditing()
	{
		return this.auditing;
	}
	public void setAuditing( int auditing )
	{
		this.auditing = auditing;
	}

	public int getFacepic()
	{
		return this.facepic;
	}
	public void setFacepic( int facepic )
	{
		this.facepic = facepic;
	}

	public int getUbbpic()
	{
		return this.ubbpic;
	}
	public void setUbbpic( int ubbpic )
	{
		this.ubbpic = ubbpic;
	}

	public int getSecretly()
	{
		return this.secretly;
	}
	public void setSecretly( int secretly )
	{
		this.secretly = secretly;
	}

	public int getDisplaystyle()
	{
		return this.displaystyle;
	}
	public void setDisplaystyle( int displaystyle )
	{
		this.displaystyle = displaystyle;
	}

	public int getLeavewordlength()
	{
		return this.leavewordlength;
	}
	public void setLeavewordlength( int leavewordlength )
	{
		this.leavewordlength = leavewordlength;
	}

	public String getFilterchar()
	{
		return this.filterchar;
	}
	public void setFilterchar( String filterchar )
	{
		this.filterchar = filterchar;
	}
}

⌨️ 快捷键说明

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