AffairReqForm.java
上传用户:lm2018
上传日期:2015-12-12
资源大小:30449k
文件大小:4k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. //Created by MyEclipse Struts
  2. // XSL source (default): platform:/plugin/com.genuitec.eclipse.cross.easystruts.eclipse_4.1.0/xslt/JavaClass.xsl
  3. package com.oa.module.affair.affairreq;
  4. import javax.servlet.http.HttpServletRequest;
  5. import org.apache.struts.action.ActionErrors;
  6. import org.apache.struts.action.ActionForm;
  7. import org.apache.struts.action.ActionMapping;
  8. import org.apache.struts.upload.FormFile;
  9. /**
  10.  * 事务发起ACTIONFORM
  11.  * MyEclipse Struts Creation date: 01-24-2008
  12.  * 
  13.  * XDoclet definition:
  14.  * 
  15.  * @struts.form name="affairReqForm"
  16.  */
  17. public class AffairReqForm extends ActionForm {
  18. // --------------------------------------------------------- Instance
  19. // Variables
  20. private long rqid;
  21. private String rtitle;
  22. private String uno;
  23. private long tno;
  24. private String rgrade;
  25. private String rstarttime;
  26. private String rendtime;
  27. private String rnexttime;
  28. private String rlasttime;
  29. private String rdetail;
  30. private String rstatus;
  31.     private String rmemo;
  32.     private String task;
  33.     
  34.     private String reqUsername;
  35.     
  36.     private String starttime;
  37.     
  38.     private String endtime;
  39.     
  40.     private String currentstep ;
  41.     
  42.     private FormFile file = null;
  43.     
  44.     private String sname;
  45.     
  46.     private String spath;
  47.     
  48.     private String userid;
  49. // --------------------------------------------------------- Methods
  50. /**
  51.  * Method validate
  52.  * 
  53.  * @param mapping
  54.  * @param request
  55.  * @return ActionErrors
  56.  */
  57. public ActionErrors validate(ActionMapping mapping,
  58. HttpServletRequest request) {
  59. // TODO Auto-generated method stub
  60. return null;
  61. }
  62. /**
  63.  * Method reset
  64.  * 
  65.  * @param mapping
  66.  * @param request
  67.  */
  68. public void reset(ActionMapping mapping, HttpServletRequest request) {
  69. // TODO Auto-generated method stub
  70. }
  71. public String getRdetail() {
  72. return rdetail;
  73. }
  74. public void setRdetail(String rdetail) {
  75. this.rdetail = rdetail;
  76. }
  77. public String getRendtime() {
  78. return rendtime;
  79. }
  80. public void setRendtime(String rendtime) {
  81. this.rendtime = rendtime;
  82. }
  83. public String getRgrade() {
  84. return rgrade;
  85. }
  86. public void setRgrade(String rgrade) {
  87. this.rgrade = rgrade;
  88. }
  89. public String getRlasttime() {
  90. return rlasttime;
  91. }
  92. public void setRlasttime(String rlasttime) {
  93. this.rlasttime = rlasttime;
  94. }
  95. public String getRnexttime() {
  96. return rnexttime;
  97. }
  98. public void setRnexttime(String rnexttime) {
  99. this.rnexttime = rnexttime;
  100. }
  101. public long getRqid() {
  102. return rqid;
  103. }
  104. public void setRqid(long rqid) {
  105. this.rqid = rqid;
  106. }
  107. public String getRstarttime() {
  108. return rstarttime;
  109. }
  110. public void setRstarttime(String rstarttime) {
  111. this.rstarttime = rstarttime;
  112. }
  113. public String getRstatus() {
  114. return rstatus;
  115. }
  116. public void setRstatus(String rstatus) {
  117. this.rstatus = rstatus;
  118. }
  119. public String getRtitle() {
  120. return rtitle;
  121. }
  122. public void setRtitle(String rtitle) {
  123. this.rtitle = rtitle;
  124. }
  125. public long getTno() {
  126. return tno;
  127. }
  128. public void setTno(long tno) {
  129. this.tno = tno;
  130. }
  131. public String getUno() {
  132. return uno;
  133. }
  134. public void setUno(String uno) {
  135. this.uno = uno;
  136. }
  137. public String getRmemo() {
  138. return rmemo;
  139. }
  140. public void setRmemo(String rmemo) {
  141. this.rmemo = rmemo;
  142. }
  143. public String getTask() {
  144. return task;
  145. }
  146. public void setTask(String task) {
  147. this.task = task;
  148. }
  149. public String getEndtime() {
  150. return endtime;
  151. }
  152. public void setEndtime(String endtime) {
  153. this.endtime = endtime;
  154. }
  155. public String getReqUsername() {
  156. return reqUsername;
  157. }
  158. public void setReqUsername(String reqUsername) {
  159. this.reqUsername = reqUsername;
  160. }
  161. public String getStarttime() {
  162. return starttime;
  163. }
  164. public void setStarttime(String starttime) {
  165. this.starttime = starttime;
  166. }
  167. public void setFile(FormFile file) {
  168. this.file = file;
  169. }
  170. public FormFile getFile() {
  171. return file;
  172. }
  173. public String getCurrentstep() {
  174. return currentstep;
  175. }
  176. public void setCurrentstep(String currentstep) {
  177. this.currentstep = currentstep;
  178. }
  179. public String getUserid() {
  180. return userid;
  181. }
  182. public void setUserid(String userid) {
  183. this.userid = userid;
  184. }
  185. public String getSname() {
  186. return sname;
  187. }
  188. public void setSname(String sname) {
  189. this.sname = sname;
  190. }
  191. public String getSpath() {
  192. return spath;
  193. }
  194. public void setSpath(String spath) {
  195. this.spath = spath;
  196. }
  197. }