📄 docleaveform.java
字号:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package com.oa.document.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: 08-21-2007
*
* XDoclet definition:
* @struts.form name="docleaveForm"
*/
public class DocleaveForm extends ActionForm {
/*
* Generated fields
*/
/** leavetype property */
private String leavetype;
/** totalhour property */
private String totalhour;
/** starttime property */
private String starttime;
/** totalday property */
private String totalday;
/** endtime property */
private String endtime;
/** tel property */
private String tel;
/** leaveplace property */
private String leaveplace;
/** auditor property */
private String auditor;
/** opinion property */
private String opinion;
/*
* 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 leavetype.
* @return String
*/
public String getLeavetype() {
return leavetype;
}
/**
* Set the leavetype.
* @param leavetype The leavetype to set
*/
public void setLeavetype(String leavetype) {
this.leavetype = leavetype;
}
/**
* Returns the totalhour.
* @return String
*/
public String getTotalhour() {
return totalhour;
}
/**
* Set the totalhour.
* @param totalhour The totalhour to set
*/
public void setTotalhour(String totalhour) {
this.totalhour = totalhour;
}
/**
* Returns the starttime.
* @return String
*/
public String getStarttime() {
return starttime;
}
/**
* Set the starttime.
* @param starttime The starttime to set
*/
public void setStarttime(String starttime) {
this.starttime = starttime;
}
/**
* Returns the totalday.
* @return String
*/
public String getTotalday() {
return totalday;
}
/**
* Set the totalday.
* @param totalday The totalday to set
*/
public void setTotalday(String totalday) {
this.totalday = totalday;
}
/**
* Returns the endtime.
* @return String
*/
public String getEndtime() {
return endtime;
}
/**
* Set the endtime.
* @param endtime The endtime to set
*/
public void setEndtime(String endtime) {
this.endtime = endtime;
}
/**
* Returns the tel.
* @return String
*/
public String getTel() {
return tel;
}
/**
* Set the tel.
* @param tel The tel to set
*/
public void setTel(String tel) {
this.tel = tel;
}
/**
* Returns the leaveplace.
* @return String
*/
public String getLeaveplace() {
return leaveplace;
}
/**
* Set the leaveplace.
* @param leaveplace The leaveplace to set
*/
public void setLeaveplace(String leaveplace) {
this.leaveplace = leaveplace;
}
public String getAuditor() {
return auditor;
}
public void setAuditor(String auditor) {
this.auditor = auditor;
}
public String getOpinion() {
return opinion;
}
public void setOpinion(String opinion) {
this.opinion = opinion;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -