⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 recvdocactionform.java

📁 负责公文的传输及一些处理功能
💻 JAVA
字号:
//Created by MyEclipse Struts
// XSL source (default): platform:/plugin/com.genuitec.eclipse.cross.easystruts.eclipse_4.1.1/xslt/JavaClass.xsl

package com.example.web.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;

import com.example.gw.senddocform.SendDocForm;

/** 
 * MyEclipse Struts
 * Creation date: 03-15-2007
 * 
 * XDoclet definition:
 * @struts.form name="sendDocActionForm"
 */
public class RecvDocActionForm extends ActionForm {

	// --------------------------------------------------------- Instance Variables

    private Integer docId;
    private String docKind;
    private Integer sendDocId;
    private String docTitle;
    private String subject;
    private Date createDate;
    private String creator;
    private Integer createUnitId;
    private String secret;
    private String emergency;
    private String saveTime;
    private String docNoPre;
    private String yearNo;
    private String waterNo;
    private String publishPerson;
    private Date publishDate;
    private String allSignPerson;
    private String dealPerson;
    private String checkPerson;
    private String printUnit;
    private Date printDate;
    private String mainDealunit;
    private String sendTo;
    private String cc;
    private String reportTo;
    private String innerTo;
    private String sealName;
    private Integer sendUnitId;
    private String sendUnitName;
    private Date sendTime;
    private String sendPerson;
    private String allUnit;
    private Integer filePages;
    private Integer attachments;
    private Integer printNumber;
    private String receiveNo;
    private String memo;
	private String dateFrom="";
	private String dateTo="";

	// --------------------------------------------------------- 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
	}

	/**
	 * @return the sendDocId
	 */
	public Integer getSendDocId() {
		return sendDocId;
	}

	/**
	 * @param sendDocId the sendDocId to set
	 */
	public void setSendDocId(Integer sendDocId) {
		this.sendDocId = sendDocId;
	}

	/**
	 * @return the allSignPerson
	 */
	public String getAllSignPerson() {
		return allSignPerson;
	}

	/**
	 * @param allSignPerson the allSignPerson to set
	 */
	public void setAllSignPerson(String allSignPerson) {
		this.allSignPerson = allSignPerson;
	}

	/**
	 * @return the allUnit
	 */
	public String getAllUnit() {
		return allUnit;
	}

	/**
	 * @param allUnit the allUnit to set
	 */
	public void setAllUnit(String allUnit) {
		this.allUnit = allUnit;
	}

	/**
	 * @return the attachments
	 */
	public Integer getAttachments() {
		return attachments;
	}

	/**
	 * @param attachments the attachments to set
	 */
	public void setAttachments(Integer attachments) {
		this.attachments = attachments;
	}

	/**
	 * @return the cc
	 */
	public String getCc() {
		return cc;
	}

	/**
	 * @param cc the cc to set
	 */
	public void setCc(String cc) {
		this.cc = cc;
	}

	/**
	 * @return the checkPerson
	 */
	public String getCheckPerson() {
		return checkPerson;
	}

	/**
	 * @param checkPerson the checkPerson to set
	 */
	public void setCheckPerson(String checkPerson) {
		this.checkPerson = checkPerson;
	}

	/**
	 * @return the createDate
	 */
	public Date getCreateDate() {
		return createDate;
	}

	/**
	 * @param createDate the createDate to set
	 */
	public void setCreateDate(Date createDate) {
		this.createDate = createDate;
	}

	/**
	 * @return the createUnitId
	 */
	public Integer getCreateUnitId() {
		return createUnitId;
	}

	/**
	 * @param createUnitId the createUnitId to set
	 */
	public void setCreateUnitId(Integer createUnitId) {
		this.createUnitId = createUnitId;
	}

	/**
	 * @return the creator
	 */
	public String getCreator() {
		return creator;
	}

	/**
	 * @param creator the creator to set
	 */
	public void setCreator(String creator) {
		this.creator = creator;
	}

	/**
	 * @return the dealPerson
	 */
	public String getDealPerson() {
		return dealPerson;
	}

	/**
	 * @param dealPerson the dealPerson to set
	 */
	public void setDealPerson(String dealPerson) {
		this.dealPerson = dealPerson;
	}

	/**
	 * @return the docId
	 */
	public Integer getDocId() {
		return docId;
	}

	/**
	 * @param docId the docId to set
	 */
	public void setDocId(Integer docId) {
		this.docId = docId;
	}

	/**
	 * @return the docKind
	 */
	public String getDocKind() {
		return docKind;
	}

	/**
	 * @param docKind the docKind to set
	 */
	public void setDocKind(String docKind) {
		this.docKind = docKind;
	}

	/**
	 * @return the docNoPre
	 */
	public String getDocNoPre() {
		return docNoPre;
	}

	/**
	 * @param docNoPre the docNoPre to set
	 */
	public void setDocNoPre(String docNoPre) {
		this.docNoPre = docNoPre;
	}

	/**
	 * @return the docTitle
	 */
	public String getDocTitle() {
		return docTitle;
	}

	/**
	 * @param docTitle the docTitle to set
	 */
	public void setDocTitle(String docTitle) {
		this.docTitle = docTitle;
	}

	/**
	 * @return the emergency
	 */
	public String getEmergency() {
		return emergency;
	}

	/**
	 * @param emergency the emergency to set
	 */
	public void setEmergency(String emergency) {
		this.emergency = emergency;
	}

	/**
	 * @return the filePages
	 */
	public Integer getFilePages() {
		return filePages;
	}

	/**
	 * @param filePages the filePages to set
	 */
	public void setFilePages(Integer filePages) {
		this.filePages = filePages;
	}

	/**
	 * @return the innerTo
	 */
	public String getInnerTo() {
		return innerTo;
	}

	/**
	 * @param innerTo the innerTo to set
	 */
	public void setInnerTo(String innerTo) {
		this.innerTo = innerTo;
	}

	/**
	 * @return the mainDealunit
	 */
	public String getMainDealunit() {
		return mainDealunit;
	}

	/**
	 * @param mainDealunit the mainDealunit to set
	 */
	public void setMainDealunit(String mainDealunit) {
		this.mainDealunit = mainDealunit;
	}

	/**
	 * @return the memo
	 */
	public String getMemo() {
		return memo;
	}

	/**
	 * @param memo the memo to set
	 */
	public void setMemo(String memo) {
		this.memo = memo;
	}

	/**
	 * @return the printDate
	 */
	public Date getPrintDate() {
		return printDate;
	}

	/**
	 * @param printDate the printDate to set
	 */
	public void setPrintDate(Date printDate) {
		this.printDate = printDate;
	}

	/**
	 * @return the printNumber
	 */
	public Integer getPrintNumber() {
		return printNumber;
	}

	/**
	 * @param printNumber the printNumber to set
	 */
	public void setPrintNumber(Integer printNumber) {
		this.printNumber = printNumber;
	}

	/**
	 * @return the printUnit
	 */
	public String getPrintUnit() {
		return printUnit;
	}

	/**
	 * @param printUnit the printUnit to set
	 */
	public void setPrintUnit(String printUnit) {
		this.printUnit = printUnit;
	}

	/**
	 * @return the publishDate
	 */
	public Date getPublishDate() {
		return publishDate;
	}

	/**
	 * @param publishDate the publishDate to set
	 */
	public void setPublishDate(Date publishDate) {
		this.publishDate = publishDate;
	}

	/**
	 * @return the publishPerson
	 */
	public String getPublishPerson() {
		return publishPerson;
	}

	/**
	 * @param publishPerson the publishPerson to set
	 */
	public void setPublishPerson(String publishPerson) {
		this.publishPerson = publishPerson;
	}

	/**
	 * @return the receiveNo
	 */
	public String getReceiveNo() {
		return receiveNo;
	}

	/**
	 * @param receiveNo the receiveNo to set
	 */
	public void setReceiveNo(String receiveNo) {
		this.receiveNo = receiveNo;
	}

	/**
	 * @return the reportTo
	 */
	public String getReportTo() {
		return reportTo;
	}

	/**
	 * @param reportTo the reportTo to set
	 */
	public void setReportTo(String reportTo) {
		this.reportTo = reportTo;
	}

	/**
	 * @return the saveTime
	 */
	public String getSaveTime() {
		return saveTime;
	}

	/**
	 * @param saveTime the saveTime to set
	 */
	public void setSaveTime(String saveTime) {
		this.saveTime = saveTime;
	}

	/**
	 * @return the sealName
	 */
	public String getSealName() {
		return sealName;
	}

	/**
	 * @param sealName the sealName to set
	 */
	public void setSealName(String sealName) {
		this.sealName = sealName;
	}

	/**
	 * @return the secret
	 */
	public String getSecret() {
		return secret;
	}

	/**
	 * @param secret the secret to set
	 */
	public void setSecret(String secret) {
		this.secret = secret;
	}


	/**
	 * @return the sendPerson
	 */
	public String getSendPerson() {
		return sendPerson;
	}

	/**
	 * @param sendPerson the sendPerson to set
	 */
	public void setSendPerson(String sendPerson) {
		this.sendPerson = sendPerson;
	}

	/**
	 * @return the sendTime
	 */
	public Date getSendTime() {
		return sendTime;
	}

	/**
	 * @param sendTime the sendTime to set
	 */
	public void setSendTime(Date sendTime) {
		this.sendTime = sendTime;
	}

	/**
	 * @return the sendTo
	 */
	public String getSendTo() {
		return sendTo;
	}

	/**
	 * @param sendTo the sendTo to set
	 */
	public void setSendTo(String sendTo) {
		this.sendTo = sendTo;
	}

	/**
	 * @return the sendUnitId
	 */
	public Integer getSendUnitId() {
		return sendUnitId;
	}

	/**
	 * @param sendUnitId the sendUnitId to set
	 */
	public void setSendUnitId(Integer sendUnitId) {
		this.sendUnitId = sendUnitId;
	}

	/**
	 * @return the sendUnitName
	 */
	public String getSendUnitName() {
		return sendUnitName;
	}

	/**
	 * @param sendUnitName the sendUnitName to set
	 */
	public void setSendUnitName(String sendUnitName) {
		this.sendUnitName = sendUnitName;
	}

	/**
	 * @return the subject
	 */
	public String getSubject() {
		return subject;
	}

	/**
	 * @param subject the subject to set
	 */
	public void setSubject(String subject) {
		this.subject = subject;
	}

	/**
	 * @return the waterNo
	 */
	public String getWaterNo() {
		return waterNo;
	}

	/**
	 * @param waterNo the waterNo to set
	 */
	public void setWaterNo(String waterNo) {
		this.waterNo = waterNo;
	}

	/**
	 * @return the yearNo
	 */
	public String getYearNo() {
		return yearNo;
	}

	/**
	 * @param yearNo the yearNo to set
	 */
	public void setYearNo(String yearNo) {
		this.yearNo = yearNo;
	}

    public String getDateFrom()
    {
    	return this.dateFrom;
    }

    public void setDateFrom(String dateFrom)
    {
    	this.dateFrom=dateFrom;
    }
    
    public String getDateTo()
    {
    	return this.dateTo;
    }

    public void setDateTo(String dateTo)
    {
    	this.dateTo=dateTo;
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -