📄 adlastresultform.java
字号:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package com.yourcompany.struts.form;
import java.io.UnsupportedEncodingException;
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: 07-22-2008
*
* XDoclet definition:
* @struts.form name="adlastresultForm"
*/
public class AdlastresultForm extends ActionForm {
/*
* Generated fields
*/
/** la_tiid property */
private Integer la_tiid;
/** la_stid property */
private String la_stid;
/*
* 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
try
{
request.setCharacterEncoding("GBK");
}
catch (UnsupportedEncodingException ex)
{}
}
/**
* Returns the la_tiid.
* @return String
*/
public Integer getLa_tiid() {
return la_tiid;
}
/**
* Set the la_tiid.
* @param la_tiid The la_tiid to set
*/
public void setLa_tiid(Integer la_tiid) {
this.la_tiid = la_tiid;
}
/**
* Returns the la_stid.
* @return String
*/
public String getLa_stid() {
return la_stid;
}
/**
* Set the la_stid.
* @param la_stid The la_stid to set
*/
public void setLa_stid(String la_stid) {
this.la_stid = la_stid;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -