📄 kqform.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-20-2008
*
* XDoclet definition:
* @struts.form name="KQForm"
*/
public class KQForm extends ActionForm {
private String id ;
private String emp_name ;
private long times;
private String month;
private long kq_degree;
/*
* Generated Methods
*/
/**
* @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 id
*/
public String getId() {
return id;
}
/**
* @param id the id to set
*/
public void setId(String id) {
this.id = id;
}
/**
* @return the kq_degree
*/
public long getKq_degree() {
return kq_degree;
}
/**
* @param kq_degree the kq_degree to set
*/
public void setKq_degree(long kq_degree) {
this.kq_degree = kq_degree;
}
/**
* @return the month
*/
public String getMonth() {
return month;
}
/**
* @param month the month to set
*/
public void setMonth(String month) {
this.month = month;
}
/**
* @return the times
*/
public long getTimes() {
return times;
}
/**
* @param times the times to set
*/
public void setTimes(long times) {
this.times = times;
}
/**
* 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
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -