wt1301form.java
来自「一个完整的物流系统」· Java 代码 · 共 93 行
JAVA
93 行
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package jp.com.cost.wt.web.form;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;
/*******************************************************************************
*
* 类名.java
*
* Creation date: 08-29-2008
* [ 录属于: 委托管理 WT1301页面 ]
* @version v1.0
* @author 白银虎
* @struts.form name="WT1301Form"
* @extends org.apache.struts.action.ActionForm
*
*
***************************************************************************** */
public class WT1301Form extends ActionForm {
/**
* 序列化ID = -4132580689428821271L
*/
private static final long serialVersionUID = -4132580689428821271L;
/** state property */
private String state;
/** id property */
private String id;
/**
* 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 state.
* @return String
*/
public String getState() {
return state;
}
/**
* Set the state.
* @param state The state to set
*/
public void setState(String state) {
this.state = state;
}
/**
* Returns the id.
* @return String
*/
public String getId() {
return id;
}
/**
* Set the id.
* @param id The id to set
*/
public void setId(String id) {
this.id = id;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?