📄 suborderform.java
字号:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package com.hz.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: 05-02-2008
*
* XDoclet definition:
* @struts.form name="subOrderForm"
*/
public class SubOrderForm extends ActionForm {
/*
* Generated fields
*/
private int subId;
/** subName property */
private String subName;
/** subCount property */
private int subCount;
/** subNumber property */
private int subNumber;
/** subDetail property */
private String subDetail;
/** orderId property */
private int orderId;
/** orderTime property */
private String orderTime;
private String code;
/*
* Generated Methods
*/
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
/**
* 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 subName.
* @return String
*/
public String getSubName() {
return subName;
}
/**
* Set the subName.
* @param subName The subName to set
*/
public void setSubName(String subName) {
this.subName = subName;
}
/**
* Returns the subCount.
* @return int
*/
public int getSubCount() {
return subCount;
}
/**
* Set the subCount.
* @param subCount The subCount to set
*/
public void setSubCount(int subCount) {
this.subCount = subCount;
}
/**
* Returns the subNumber.
* @return int
*/
public int getSubNumber() {
return subNumber;
}
/**
* Set the subNumber.
* @param subNumber The subNumber to set
*/
public void setSubNumber(int subNumber) {
this.subNumber = subNumber;
}
/**
* Returns the subDetail.
* @return String
*/
public String getSubDetail() {
return subDetail;
}
/**
* Set the subDetail.
* @param subDetail The subDetail to set
*/
public void setSubDetail(String subDetail) {
this.subDetail = subDetail;
}
/**
* Returns the orderId.
* @return int
*/
public int getOrderId() {
return orderId;
}
/**
* Set the orderId.
* @param orderId The orderId to set
*/
public void setOrderId(int orderId) {
this.orderId = orderId;
}
/**
* Returns the orderTime.
* @return String
*/
public String getOrderTime() {
return orderTime;
}
/**
* Set the orderTime.
* @param orderTime The orderTime to set
*/
public void setOrderTime(String orderTime) {
this.orderTime = orderTime;
}
public int getSubId() {
return subId;
}
public void setSubId(int subId) {
this.subId = subId;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -