📄 updateroadlog.java
字号:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package actionForm;
import java.util.Date;
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: 04-24-2009
*
* XDoclet definition:
* @struts.form name="updateRoadlog"
*/
public class UpdateRoadlog extends ActionForm {
/*
* Generated fields
*/
/** vehicleTime property */
private String vehicleTime;
/** outgrowthID property */
private Long outgrowthID;
/** roadLogID property */
private Long roadLogID;
/** remark property */
private String remark;
/*
* 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 vehicleTime.
* @return Integer
*/
public String getVehicleTime() {
return vehicleTime;
}
/**
* Set the vehicleTime.
* @param vehicleTime The vehicleTime to set
*/
public void setVehicleTime(String vehicleTime) {
this.vehicleTime = vehicleTime;
}
/**
* Returns the outgrowthID.
* @return Integer
*/
public Long getOutgrowthID() {
return outgrowthID;
}
/**
* Set the outgrowthID.
* @param outgrowthID The outgrowthID to set
*/
public void setOutgrowthID(Long outgrowthID) {
this.outgrowthID = outgrowthID;
}
/**
* Returns the roadLogID.
* @return Integer
*/
public Long getRoadLogID() {
return roadLogID;
}
/**
* Set the roadLogID.
* @param roadLogID The roadLogID to set
*/
public void setRoadLogID(Long roadLogID) {
this.roadLogID = roadLogID;
}
/**
* Returns the remark.
* @return Integer
*/
public String getRemark() {
return remark;
}
/**
* Set the remark.
* @param remark The remark to set
*/
public void setRemark(String remark) {
this.remark = remark;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -