📄 docauditform.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-24-2007
*
* XDoclet definition:
* @struts.form name="docAuditForm"
*/
public class DocAuditForm extends ActionForm {
/*
* Generated fields
*/
/** mid property */
private String mid;
/** doctype property */
private String doctype;
/** nextauditor property */
private String auditor;
/** docid property */
private String docid;
/** opinion property */
private String opinion;
/** opinion property */
private String state;
/*
* 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 doctype.
* @return String
*/
public String getDoctype() {
return doctype;
}
/**
* Set the doctype.
* @param doctype The doctype to set
*/
public void setDoctype(String doctype) {
this.doctype = doctype;
}
/**
* Returns the docid.
* @return String
*/
public String getDocid() {
return docid;
}
/**
* Set the docid.
* @param docid The docid to set
*/
public void setDocid(String docid) {
this.docid = docid;
}
/**
* Returns the opinion.
* @return String
*/
public String getOpinion() {
return opinion;
}
/**
* Set the opinion.
* @param opinion The opinion to set
*/
public void setOpinion(String opinion) {
this.opinion = opinion;
}
public String getState() {
return state;
}
public void setState(String state) {
this.state = state;
}
public String getAuditor() {
return auditor;
}
public void setAuditor(String auditor) {
this.auditor = auditor;
}
public String getMid() {
return mid;
}
public void setMid(String mid) {
this.mid = mid;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -