addgatheringactionform.java

来自「完整的合同管理信息系统」· Java 代码 · 共 71 行

JAVA
71
字号
package com.ICT.AFC.contractmoney.gathering;

import org.apache.struts.action.*;
import javax.servlet.http.*;
import org.apache.struts.upload.*;

public class addGatheringActionForm extends ActionForm {
  private String gatheringDate;
  private String gatheringMoney;
  private String gatheringRemark;
  private FormFile gatheringFile;
  private String gatheringContractID;
  private String gatheringID;
  private String gatheringWriter;
  private String gatheringRECTime;
  public String getGatheringDate() {
    return gatheringDate;
  }
  public void setGatheringDate(String gatheringDate) {
    this.gatheringDate = gatheringDate;
  }
  public String getGatheringMoney() {
    return gatheringMoney;
  }
  public void setGatheringMoney(String gatheringMoney) {
    this.gatheringMoney = gatheringMoney;
  }
  public String getGatheringRemark() {
    return gatheringRemark;
  }
  public void setGatheringRemark(String gatheringRemark) {
    this.gatheringRemark = gatheringRemark;
  }
  public ActionErrors validate(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {
    /**@todo: finish this method, this is just the skeleton.*/
    return null;
  }
  public void reset(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {
  }
  public FormFile getGatheringFile() {
    return gatheringFile;
  }
  public void setGatheringFile(FormFile gatheringFile) {
    this.gatheringFile = gatheringFile;
  }
  public String getGatheringContractID() {
    return gatheringContractID;
  }
  public void setGatheringContractID(String gatheringContractID) {
    this.gatheringContractID = gatheringContractID;
  }
  public String getGatheringID() {
    return gatheringID;
  }
  public void setGatheringID(String gatheringID) {
    this.gatheringID = gatheringID;
  }
  public String getGatheringWriter() {
    return gatheringWriter;
  }
  public void setGatheringWriter(String gatheringWriter) {
    this.gatheringWriter = gatheringWriter;
  }
  public String getGatheringRECTime() {
    return gatheringRECTime;
  }
  public void setGatheringRECTime(String gatheringRECTime) {
    this.gatheringRECTime = gatheringRECTime;
  }
}

⌨️ 快捷键说明

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