📄 infoform.java
字号:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package com.oa.companyculture.form;
import java.sql.Date;
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: 08-30-2007
*
* XDoclet definition:
* @struts.form name="infoForm"
*/
public class InfoForm extends ActionForm {
/*
* Generated fields
*/
/** infodate property */
private String infodate;
/** revertnum property */
private Integer revertnum;
/** theme property */
private String theme;
/** zhiding property */
private Integer zhiding;
/** browernum property */
private Integer browernum;
/** issuename property */
private String issuename;
/** picture property */
private FormFile picture;
/** content property */
private String content;
/** submodulelistid property */
private Integer submodulelistid;
/** id property */
private Integer id;
/** face property */
private String face;
/*
* Generated Methods
*/
/**
* 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
}
/**
* Returns the revertnum.
* @return Integer
*/
public Integer getRevertnum() {
return revertnum;
}
/**
* Set the revertnum.
* @param revertnum The revertnum to set
*/
public void setRevertnum(Integer revertnum) {
this.revertnum = revertnum;
}
/**
* Returns the theme.
* @return String
*/
public String getTheme() {
return theme;
}
/**
* Set the theme.
* @param theme The theme to set
*/
public void setTheme(String theme) {
this.theme = theme;
}
/**
* Returns the zhiding.
* @return Integer
*/
public Integer getZhiding() {
return zhiding;
}
/**
* Set the zhiding.
* @param zhiding The zhiding to set
*/
public void setZhiding(Integer zhiding) {
this.zhiding = zhiding;
}
/**
* Returns the browernum.
* @return Integer
*/
public Integer getBrowernum() {
return browernum;
}
/**
* Set the browernum.
* @param browernum The browernum to set
*/
public void setBrowernum(Integer browernum) {
this.browernum = browernum;
}
/**
* Returns the issuename.
* @return String
*/
public String getIssuename() {
return issuename;
}
/**
* Set the issuename.
* @param issuename The issuename to set
*/
public void setIssuename(String issuename) {
this.issuename = issuename;
}
/**
* Returns the content.
* @return String
*/
public String getContent() {
return content;
}
/**
* Set the content.
* @param content The content to set
*/
public void setContent(String content) {
this.content = content;
}
/**
* Returns the submodulelistid.
* @return Integer
*/
public Integer getSubmodulelistid() {
return submodulelistid;
}
/**
* Set the submodulelistid.
* @param submodulelistid The submodulelistid to set
*/
public void setSubmodulelistid(Integer submodulelistid) {
this.submodulelistid = submodulelistid;
}
/**
* Returns the id.
* @return Integer
*/
public Integer getId() {
return id;
}
/**
* Set the id.
* @param id The id to set
*/
public void setId(Integer id) {
this.id = id;
}
/**
* Returns the face.
* @return String
*/
public String getFace() {
return face;
}
/**
* Set the face.
* @param face The face to set
*/
public void setFace(String face) {
this.face = face;
}
/**
* @param picture the picture to set
*/
public void setPicture(FormFile picture) {
this.picture = picture;
}
/**
* @return the picture
*/
public FormFile getPicture() {
return picture;
}
/**
* @param infodate the infodate to set
*/
public void setInfodate(String infodate) {
this.infodate = infodate;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -