AffairReqForm.java
资源名称:(J2EE)oa.rar [点击查看]
上传用户:lm2018
上传日期:2015-12-12
资源大小:30449k
文件大小:4k
源码类别:
Jsp/Servlet
开发平台:
Java
- //Created by MyEclipse Struts
- // XSL source (default): platform:/plugin/com.genuitec.eclipse.cross.easystruts.eclipse_4.1.0/xslt/JavaClass.xsl
- package com.oa.module.affair.affairreq;
- import javax.servlet.http.HttpServletRequest;
- import org.apache.struts.action.ActionErrors;
- import org.apache.struts.action.ActionForm;
- import org.apache.struts.action.ActionMapping;
- import org.apache.struts.upload.FormFile;
- /**
- * 事务发起ACTIONFORM
- * MyEclipse Struts Creation date: 01-24-2008
- *
- * XDoclet definition:
- *
- * @struts.form name="affairReqForm"
- */
- public class AffairReqForm extends ActionForm {
- // --------------------------------------------------------- Instance
- // Variables
- private long rqid;
- private String rtitle;
- private String uno;
- private long tno;
- private String rgrade;
- private String rstarttime;
- private String rendtime;
- private String rnexttime;
- private String rlasttime;
- private String rdetail;
- private String rstatus;
- private String rmemo;
- private String task;
- private String reqUsername;
- private String starttime;
- private String endtime;
- private String currentstep ;
- private FormFile file = null;
- private String sname;
- private String spath;
- private String userid;
- // --------------------------------------------------------- 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
- }
- public String getRdetail() {
- return rdetail;
- }
- public void setRdetail(String rdetail) {
- this.rdetail = rdetail;
- }
- public String getRendtime() {
- return rendtime;
- }
- public void setRendtime(String rendtime) {
- this.rendtime = rendtime;
- }
- public String getRgrade() {
- return rgrade;
- }
- public void setRgrade(String rgrade) {
- this.rgrade = rgrade;
- }
- public String getRlasttime() {
- return rlasttime;
- }
- public void setRlasttime(String rlasttime) {
- this.rlasttime = rlasttime;
- }
- public String getRnexttime() {
- return rnexttime;
- }
- public void setRnexttime(String rnexttime) {
- this.rnexttime = rnexttime;
- }
- public long getRqid() {
- return rqid;
- }
- public void setRqid(long rqid) {
- this.rqid = rqid;
- }
- public String getRstarttime() {
- return rstarttime;
- }
- public void setRstarttime(String rstarttime) {
- this.rstarttime = rstarttime;
- }
- public String getRstatus() {
- return rstatus;
- }
- public void setRstatus(String rstatus) {
- this.rstatus = rstatus;
- }
- public String getRtitle() {
- return rtitle;
- }
- public void setRtitle(String rtitle) {
- this.rtitle = rtitle;
- }
- public long getTno() {
- return tno;
- }
- public void setTno(long tno) {
- this.tno = tno;
- }
- public String getUno() {
- return uno;
- }
- public void setUno(String uno) {
- this.uno = uno;
- }
- public String getRmemo() {
- return rmemo;
- }
- public void setRmemo(String rmemo) {
- this.rmemo = rmemo;
- }
- public String getTask() {
- return task;
- }
- public void setTask(String task) {
- this.task = task;
- }
- public String getEndtime() {
- return endtime;
- }
- public void setEndtime(String endtime) {
- this.endtime = endtime;
- }
- public String getReqUsername() {
- return reqUsername;
- }
- public void setReqUsername(String reqUsername) {
- this.reqUsername = reqUsername;
- }
- public String getStarttime() {
- return starttime;
- }
- public void setStarttime(String starttime) {
- this.starttime = starttime;
- }
- public void setFile(FormFile file) {
- this.file = file;
- }
- public FormFile getFile() {
- return file;
- }
- public String getCurrentstep() {
- return currentstep;
- }
- public void setCurrentstep(String currentstep) {
- this.currentstep = currentstep;
- }
- public String getUserid() {
- return userid;
- }
- public void setUserid(String userid) {
- this.userid = userid;
- }
- public String getSname() {
- return sname;
- }
- public void setSname(String sname) {
- this.sname = sname;
- }
- public String getSpath() {
- return spath;
- }
- public void setSpath(String spath) {
- this.spath = spath;
- }
- }