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

📄 hintform.java

📁 基于J2EE的办公自动化系统。实现流程定义流程办理等。运用了hibernate+struts+spring框架综合运用的系统。
💻 JAVA
字号:
//Created by MyEclipse Struts
// XSL source (default): platform:/plugin/com.genuitec.eclipse.cross.easystruts.eclipse_4.1.0/xslt/JavaClass.xsl

package com.oa.module.hints;

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: 01-26-2008
 * 
 * XDoclet definition:
 * @struts.form name="hintForm"
 */
public class HintForm extends ActionForm {

	// --------------------------------------------------------- Instance Variables
     private String uno;
     private String hshowtype;
     private String hshowtime;
     private String haffair;
     private String hmeeting;
     private String hemail;
     private String hmemo;
	// --------------------------------------------------------- Methods

	public String getHaffair() {
		return haffair;
	}

	public void setHaffair(String haffair) {
		this.haffair = haffair;
	}

	public String getHemail() {
		return hemail;
	}

	public void setHemail(String hemail) {
		this.hemail = hemail;
	}

	public String getHmeeting() {
		return hmeeting;
	}

	public void setHmeeting(String hmeeting) {
		this.hmeeting = hmeeting;
	}

	public String getHmemo() {
		return hmemo;
	}

	public void setHmemo(String hmemo) {
		this.hmemo = hmemo;
	}

	public String getHshowtime() {
		return hshowtime;
	}

	public void setHshowtime(String hshowtime) {
		this.hshowtime = hshowtime;
	}

	public String getHshowtype() {
		return hshowtype;
	}

	public void setHshowtype(String hshowtype) {
		this.hshowtype = hshowtype;
	}

	public String getUno() {
		return uno;
	}

	public void setUno(String uno) {
		this.uno = uno;
	}

	/** 
	 * Method validate
	 * @param mapping
	 * @param request
	 * @return ActionErrors
	 */
	public ActionErrors validate(
		ActionMapping mapping,
		HttpServletRequest request) {

		// TODO Auto-generated method stub
		return null;
	}

	/** 
	 * Method reset
	 * @param mapping
	 * @param request
	 */
	public void reset(ActionMapping mapping, HttpServletRequest request) {
		                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
		
	}

	
}

⌨️ 快捷键说明

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