📄 loginform.java
字号:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package org.HumResManSys.actionForm;
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-19-2008
*
* XDoclet definition:
* @struts.form name="loginForm"
*/
public class LoginForm extends ActionForm {
/*
* Generated Methods
*/
/**
* Method validate
* @param mapping
* @param request
* @return ActionErrors
*/
private long emp_id;
private String emp_name;
private String psw;
private String id_card;
private String sex;
private String dept_name;
private String job;
private String hire_date;
private String birthday;
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 birthday
*/
public String getBirthday() {
return birthday;
}
/**
* @param birthday the birthday to set
*/
public void setBirthday(String birthday) {
this.birthday = birthday;
}
/**
* @return the dept_name
*/
public String getDept_name() {
return dept_name;
}
/**
* @param dept_name the dept_name to set
*/
public void setDept_name(String dept_name) {
this.dept_name = dept_name;
}
/**
* @return the emp_id
*/
public long getEmp_id() {
return emp_id;
}
/**
* @param emp_id the emp_id to set
*/
public void setEmp_id(long emp_id) {
this.emp_id = emp_id;
}
/**
* @return the emp_name
*/
public String getEmp_name() {
return emp_name;
}
/**
* @param emp_name the emp_name to set
*/
public void setEmp_name(String emp_name) {
this.emp_name = emp_name;
}
/**
* @return the hire_date
*/
public String getHire_date() {
return hire_date;
}
/**
* @param hire_date the hire_date to set
*/
public void setHire_date(String hire_date) {
this.hire_date = hire_date;
}
/**
* @return the id_card
*/
public String getId_card() {
return id_card;
}
/**
* @param id_card the id_card to set
*/
public void setId_card(String id_card) {
this.id_card = id_card;
}
/**
* @return the job
*/
public String getJob() {
return job;
}
/**
* @param job the job to set
*/
public void setJob(String job) {
this.job = job;
}
/**
* @return the psw
*/
public String getPsw() {
return psw;
}
/**
* @param psw the psw to set
*/
public void setPsw(String psw) {
this.psw = psw;
}
/**
* @return the sex
*/
public String getSex() {
return sex;
}
/**
* @param sex the sex to set
*/
public void setSex(String sex) {
this.sex = sex;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -