📄 person_infoform.java
字号:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package com.oa.struts.perOffice.form;
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: 11-06-2008
*
* XDoclet definition:
* @struts.form name="person_InfoForm"
*/
public class Person_InfoForm extends ActionForm {
/*
* Generated fields
*/
/** userName property */
private String userName;
/** userNational property */
private String userNational;
/** no property */
private String no;
/** userAddress property */
private String userAddress;
/** userDepTel property */
private String userDepTel;
/** userPost property */
private String userPost;
/** userBirth property */
private String userBirth;
/** userCode property */
private String userCode;
/** userSex2 property */
private String userSex2;
/** userEmail property */
private String userEmail;
/** userSex property */
private String userSex;
/** yes property */
private String yes;
/** userTel property */
private String userTel;
/** userRole property */
private String userRole;
/** departID property */
private String departID;
/*
* 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 userName.
* @return String
*/
public String getUserName() {
return userName;
}
/**
* Set the userName.
* @param userName The userName to set
*/
public void setUserName(String userName) {
this.userName = userName;
}
/**
* Returns the userNational.
* @return String
*/
public String getUserNational() {
return userNational;
}
/**
* Set the userNational.
* @param userNational The userNational to set
*/
public void setUserNational(String userNational) {
this.userNational = userNational;
}
/**
* Returns the no.
* @return String
*/
public String getNo() {
return no;
}
/**
* Set the no.
* @param no The no to set
*/
public void setNo(String no) {
this.no = no;
}
/**
* Returns the userAddress.
* @return String
*/
public String getUserAddress() {
return userAddress;
}
/**
* Set the userAddress.
* @param userAddress The userAddress to set
*/
public void setUserAddress(String userAddress) {
this.userAddress = userAddress;
}
/**
* Returns the userDepTel.
* @return String
*/
public String getUserDepTel() {
return userDepTel;
}
/**
* Set the userDepTel.
* @param userDepTel The userDepTel to set
*/
public void setUserDepTel(String userDepTel) {
this.userDepTel = userDepTel;
}
/**
* Returns the userPost.
* @return String
*/
public String getUserPost() {
return userPost;
}
/**
* Set the userPost.
* @param userPost The userPost to set
*/
public void setUserPost(String userPost) {
this.userPost = userPost;
}
/**
* Returns the userBirth.
* @return String
*/
public String getUserBirth() {
return userBirth;
}
/**
* Set the userBirth.
* @param userBirth The userBirth to set
*/
public void setUserBirth(String userBirth) {
this.userBirth = userBirth;
}
/**
* Returns the userCode.
* @return String
*/
public String getUserCode() {
return userCode;
}
/**
* Set the userCode.
* @param userCode The userCode to set
*/
public void setUserCode(String userCode) {
this.userCode = userCode;
}
/**
* Returns the userSex2.
* @return String
*/
public String getUserSex2() {
return userSex2;
}
/**
* Set the userSex2.
* @param userSex2 The userSex2 to set
*/
public void setUserSex2(String userSex2) {
this.userSex2 = userSex2;
}
/**
* Returns the userEmail.
* @return String
*/
public String getUserEmail() {
return userEmail;
}
/**
* Set the userEmail.
* @param userEmail The userEmail to set
*/
public void setUserEmail(String userEmail) {
this.userEmail = userEmail;
}
/**
* Returns the userSex.
* @return String
*/
public String getUserSex() {
return userSex;
}
/**
* Set the userSex.
* @param userSex The userSex to set
*/
public void setUserSex(String userSex) {
this.userSex = userSex;
}
/**
* Returns the yes.
* @return String
*/
public String getYes() {
return yes;
}
/**
* Set the yes.
* @param yes The yes to set
*/
public void setYes(String yes) {
this.yes = yes;
}
/**
* Returns the userTel.
* @return String
*/
public String getUserTel() {
return userTel;
}
/**
* Set the userTel.
* @param userTel The userTel to set
*/
public void setUserTel(String userTel) {
this.userTel = userTel;
}
/**
* Returns the userRole.
* @return String
*/
public String getUserRole() {
return userRole;
}
/**
* Set the userRole.
* @param userRole The userRole to set
*/
public void setUserRole(String userRole) {
this.userRole = userRole;
}
/**
* Returns the departID.
* @return String
*/
public String getDepartID() {
return departID;
}
/**
* Set the departID.
* @param departID The departID to set
*/
public void setDepartID(String departID) {
this.departID = departID;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -