📄 selectrankform.java
字号:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package cn.zqnet8.web.struts.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: 03-01-2009
*
* XDoclet definition:
* @struts.form name="selectRankForm"
*/
public class SelectRankForm extends ActionForm {
/*
* Generated fields
*/
/** month property */
private String month;
/** levelID property */
private Integer levelID;
/** year property */
private String year;
/** chkValue property */
private Integer chkValue;
/** custNo property */
private String custNo;
/*
* 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 month.
* @return String
*/
public String getMonth() {
return month;
}
/**
* Set the month.
* @param month The month to set
*/
public void setMonth(String month) {
this.month = month;
}
/**
* Returns the levelID.
* @return Integer
*/
public Integer getLevelID() {
return levelID;
}
/**
* Set the levelID.
* @param levelID The levelID to set
*/
public void setLevelID(Integer levelID) {
this.levelID = levelID;
}
/**
* Returns the year.
* @return String
*/
public String getYear() {
return year;
}
/**
* Set the year.
* @param year The year to set
*/
public void setYear(String year) {
this.year = year;
}
/**
* Returns the chkValue.
* @return Integer
*/
public Integer getChkValue() {
return chkValue;
}
/**
* Set the chkValue.
* @param chkValue The chkValue to set
*/
public void setChkValue(Integer chkValue) {
this.chkValue = chkValue;
}
/**
* Returns the custNo.
* @return String
*/
public String getCustNo() {
return custNo;
}
/**
* Set the custNo.
* @param custNo The custNo to set
*/
public void setCustNo(String custNo) {
this.custNo = custNo;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -