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

📄 revertinfoform.java

📁 一个oa系统
💻 JAVA
字号:
/*
 * Generated by MyEclipse Struts
 * Template path: templates/java/JavaClass.vtl
 */
package com.oa.companyculture.form;

import javax.servlet.http.HttpServletRequest;

import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;
import org.apache.struts.upload.FormFile;

/** 
 * MyEclipse Struts
 * Creation date: 09-06-2007
 * 
 * XDoclet definition:
 * @struts.form name="revertInfoForm"
 */
public class RevertInfoForm extends ActionForm {
	/*
	 * Generated Methods
	 */
	private Integer id;
	private Integer revertid;
	private String reverttheme;
	private String revertface;
	private String revertcontent;
	private FormFile picture;
	private String revertname;
	private String revertdate;
	/** 
	 * 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) {
		// TODO Auto-generated method stub
	}

	/**
	 * @return the id
	 */
	public Integer getId() {
		return id;
	}

	/**
	 * @param id the id to set
	 */
	public void setId(Integer id) {
		this.id = id;
	}

	/**
	 * @return the picture
	 */
	public FormFile getPicture() {
		return picture;
	}

	/**
	 * @param picture the picture to set
	 */
	public void setPicture(FormFile picture) {
		this.picture = picture;
	}

	/**
	 * @return the revertcontent
	 */
	public String getRevertcontent() {
		return revertcontent;
	}

	/**
	 * @param revertcontent the revertcontent to set
	 */
	public void setRevertcontent(String revertcontent) {
		this.revertcontent = revertcontent;
	}

	/**
	 * @return the revertdate
	 */
	public String getRevertdate() {
		return revertdate;
	}

	/**
	 * @param revertdate the revertdate to set
	 */
	public void setRevertdate(String revertdate) {
		this.revertdate = revertdate;
	}

	/**
	 * @return the revertface
	 */
	public String getRevertface() {
		return revertface;
	}

	/**
	 * @param revertface the revertface to set
	 */
	public void setRevertface(String revertface) {
		this.revertface = revertface;
	}

	/**
	 * @return the revertid
	 */
	public Integer getRevertid() {
		return revertid;
	}

	/**
	 * @param revertid the revertid to set
	 */
	public void setRevertid(Integer revertid) {
		this.revertid = revertid;
	}

	/**
	 * @return the revertname
	 */
	public String getRevertname() {
		return revertname;
	}

	/**
	 * @param revertname the revertname to set
	 */
	public void setRevertname(String revertname) {
		this.revertname = revertname;
	}

	/**
	 * @return the reverttheme
	 */
	public String getReverttheme() {
		return reverttheme;
	}

	/**
	 * @param reverttheme the reverttheme to set
	 */
	public void setReverttheme(String reverttheme) {
		this.reverttheme = reverttheme;
	}
}

⌨️ 快捷键说明

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