📄 employeeform.java
字号:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package com.csu.crm.employee.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: 09-28-2007
*
* XDoclet definition:
* @struts.form name="employeeForm"
*/
public class EmployeeForm extends ActionForm {
/*
* Generated fields
*/
private String loginId;
/** sex property */
private String sex;
/** mobile property */
private String mobile;
/** birth property */
private String birth;
/** position property */
private String position;
/** employee property */
private String employee;
/** description property */
private String description;
/** email property */
private String email;
/** joinDate property */
private String joinDate;
/** employeeId property */
private String employeeId;
/** tel property */
private String tel;
/** pwd property */
private String pwd;
/*
* 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 sex.
* @return String
*/
public String getSex() {
return sex;
}
/**
* Set the sex.
* @param sex The sex to set
*/
public void setSex(String sex) {
this.sex = sex;
}
/**
* Returns the mobile.
* @return String
*/
public String getMobile() {
return mobile;
}
/**
* Set the mobile.
* @param mobile The mobile to set
*/
public void setMobile(String mobile) {
this.mobile = mobile;
}
/**
* Returns the birth.
* @return String
*/
public String getBirth() {
return birth;
}
/**
* Set the birth.
* @param birth The birth to set
*/
public void setBirth(String birth) {
this.birth = birth;
}
/**
* Returns the position.
* @return String
*/
public String getPosition() {
return position;
}
/**
* Set the position.
* @param position The position to set
*/
public void setPosition(String position) {
this.position = position;
}
/**
* Returns the employee.
* @return String
*/
public String getEmployee() {
return employee;
}
/**
* Set the employee.
* @param employee The employee to set
*/
public void setEmployee(String employee) {
this.employee = employee;
}
/**
* Returns the description.
* @return String
*/
public String getDescription() {
return description;
}
/**
* Set the description.
* @param description The description to set
*/
public void setDescription(String description) {
this.description = description;
}
/**
* Returns the email.
* @return String
*/
public String getEmail() {
return email;
}
/**
* Set the email.
* @param email The email to set
*/
public void setEmail(String email) {
this.email = email;
}
/**
* Returns the joinDate.
* @return String
*/
public String getJoinDate() {
return joinDate;
}
/**
* Set the joinDate.
* @param joinDate The joinDate to set
*/
public void setJoinDate(String joinDate) {
this.joinDate = joinDate;
}
/**
* Returns the employeeId.
* @return String
*/
public String getEmployeeId() {
return employeeId;
}
/**
* Set the employeeId.
* @param employeeId The employeeId to set
*/
public void setEmployeeId(String employeeId) {
this.employeeId = employeeId;
}
/**
* Returns the tel.
* @return String
*/
public String getTel() {
return tel;
}
/**
* Set the tel.
* @param tel The tel to set
*/
public void setTel(String tel) {
this.tel = tel;
}
/**
* Returns the pwd.
* @return String
*/
public String getPwd() {
return pwd;
}
/**
* Set the pwd.
* @param pwd The pwd to set
*/
public void setPwd(String pwd) {
this.pwd = pwd;
}
public String getLoginId() {
return loginId;
}
public void setLoginId(String loginId) {
this.loginId = loginId;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -