📄 sendform.java
字号:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package chuyun.form;
import java.util.*;
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: 09-09-2007
*
* XDoclet definition:
* @struts.form name="sendForm"
*/
public class SendForm extends ActionForm {
/*
* Generated fields
*/
/** warehouse property */
private String warehouse;
private int ID;
private int orderID;
/** sendtime property */
private String sendtime;
/** arrivetime property */
private String arrivetime;
/** consignee property */
private String consignee;
private int principalID;
private String principal;
private int warehouseID;
/*
* 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 warehouse.
* @return String
*/
public String getWarehouse() {
return warehouse;
}
/**
* Set the warehouse.
* @param warehouse The warehouse to set
*/
public void setWarehouse(String warehouse) {
this.warehouse = warehouse;
}
/**
* Returns the sendtime.
* @return String
*/
public String getSendtime() {
return sendtime;
}
/**
* Set the sendtime.
* @param sendtime The sendtime to set
*/
public void setSendtime(String sendtime) {
this.sendtime = sendtime;
}
/**
* Returns the arrivetime.
* @return String
*/
public String getArrivetime() {
return arrivetime;
}
/**
* Set the arrivetime.
* @param arrivetime The arrivetime to set
*/
public void setArrivetime(String arrivetime) {
this.arrivetime = arrivetime;
}
/**
* Returns the consignee.
* @return String
*/
public String getConsignee() {
return consignee;
}
/**
* Set the consignee.
* @param consignee The consignee to set
*/
public void setConsignee(String consignee) {
this.consignee = consignee;
}
public int getID() {
return ID;
}
public void setID(int id) {
ID = id;
}
public int getOrderID() {
return orderID;
}
public void setOrderID(int orderID) {
this.orderID = orderID;
}
public String getPrincipal() {
return principal;
}
public void setPrincipal(String principal) {
this.principal = principal;
}
public int getPrincipalID() {
return principalID;
}
public void setPrincipalID(int principalID) {
this.principalID = principalID;
}
public int getWarehouseID() {
return warehouseID;
}
public void setWarehouseID(int warehouseID) {
this.warehouseID = warehouseID;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -