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

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.pub.affiche;
  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.  * MyEclipse Struts
  11.  * Creation date: 01-21-2008
  12.  * 
  13.  * XDoclet definition:
  14.  * @struts.form name="afficheForm"
  15.  */
  16. public class AfficheForm extends ActionForm {
  17. // --------------------------------------------------------- Instance Variables
  18. private int aid;
  19. private String atitle;
  20. private String  acontent;
  21. private String  affixname;
  22. private String  affixpath;
  23. private String  asendTime;
  24. private String  arealTime;
  25. private String  areguTime;
  26. private String  astate;
  27. private String  funo;
  28. private String  uno;
  29. private String  amemo;
  30. private String method;
  31. private FormFile myfile;
  32. // --------------------------------------------------------- Methods
  33. /** 
  34.  * Method validate
  35.  * @param mapping
  36.  * @param request
  37.  * @return ActionErrors
  38.  */
  39. public ActionErrors validate(
  40. ActionMapping mapping,
  41. HttpServletRequest request) {
  42. return null;
  43. }
  44. /** 
  45.  * Method reset
  46.  * @param mapping
  47.  * @param request
  48.  */
  49. public void reset(ActionMapping mapping, HttpServletRequest request) {
  50. }
  51. public String getAcontent() {
  52. return acontent;
  53. }
  54. public void setAcontent(String acontent) {
  55. this.acontent = acontent;
  56. }
  57. public String getAffixname() {
  58. return affixname;
  59. }
  60. public void setAffixname(String affixname) {
  61. this.affixname = affixname;
  62. }
  63. public String getAffixpath() {
  64. return affixpath;
  65. }
  66. public void setAffixpath(String affixpath) {
  67. this.affixpath = affixpath;
  68. }
  69. public String getAmemo() {
  70. return amemo;
  71. }
  72. public void setAmemo(String amemo) {
  73. this.amemo = amemo;
  74. }
  75. public String getArealTime() {
  76. return arealTime;
  77. }
  78. public void setArealTime(String arealTime) {
  79. this.arealTime = arealTime;
  80. }
  81. public String getAreguTime() {
  82. return areguTime;
  83. }
  84. public void setAreguTime(String areguTime) {
  85. this.areguTime = areguTime;
  86. }
  87. public String getAsendTime() {
  88. return asendTime;
  89. }
  90. public void setAsendTime(String asendTime) {
  91. this.asendTime = asendTime;
  92. }
  93. public String getAstate() {
  94. return astate;
  95. }
  96. public void setAstate(String astate) {
  97. this.astate = astate;
  98. }
  99. public String getAtitle() {
  100. return atitle;
  101. }
  102. public void setAtitle(String atitle) {
  103. this.atitle = atitle;
  104. }
  105. public String getFuno() {
  106. return funo;
  107. }
  108. public void setFuno(String funo) {
  109. this.funo = funo;
  110. }
  111. public String getMethod() {
  112. return method;
  113. }
  114. public void setMethod(String method) {
  115. this.method = method;
  116. }
  117. public String getUno() {
  118. return uno;
  119. }
  120. public void setUno(String uno) {
  121. this.uno = uno;
  122. }
  123. public FormFile getMyfile() {
  124. return myfile;
  125. }
  126. public void setMyfile(FormFile myfile) {
  127. this.myfile = myfile;
  128. }
  129. public int getAid() {
  130. return aid;
  131. }
  132. public void setAid(int aid) {
  133. this.aid = aid;
  134. }
  135. }