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

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.meet.struts.form;
  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. public class MeetForm extends ActionForm {
  9. private long mid;
  10. private String uno;
  11. private String mtitle;
  12. private String mcontent;
  13. private long rmid;
  14. private String mstarttime;
  15. private String mendtime;
  16. private String munos;
  17. private String maffixname;
  18. private String maffixpath;
  19. private long mstatus;
  20. private String mmemo;
  21. private String task;
  22. private long mpeople;
  23. private String[] arryusername;// 接收列表框中的数据(所有的用户)
  24. private String[] addmeet;// 参加会议的人
  25. private String[] rooms;
  26. private long addressid;
  27. private long mcancle;
  28. private String mreason;
  29. private long miaffix;
  30. // --------------------------------------------------------- Methods
  31. /**
  32.  * Method validate
  33.  * 
  34.  * @param mapping
  35.  * @param request
  36.  * @return ActionErrors
  37.  */
  38. public ActionErrors validate(ActionMapping mapping,
  39. HttpServletRequest request) {
  40. // ActionErrors errors = new ActionErrors();
  41. // if (this.task != null && this.task.equals("add")) {
  42. // if (this.mtitle == null || this.mtitle.trim().equals("")) {
  43. // ActionMessage message = new ActionMessage("会议主题不能为空", false);
  44. // errors.add("mtitle", message);
  45. // } else if (this.mstarttime == null
  46. // || this.mstarttime.trim().equals("")
  47. // || this.mendtime == null || this.mendtime.trim().equals("")) {
  48. // ActionMessage message = new ActionMessage("会议时间不能为空", false);
  49. // errors.add("time", message);
  50. // } else if (this.rmid == 0) {
  51. // ActionMessage message = new ActionMessage("请选择一个会议地点", false);
  52. // errors.add("rmid", message);
  53. // } else if (this.munos == null || this.munos.trim().equals("")) {
  54. // ActionMessage message = new ActionMessage("请选择要参与的人", false);
  55. // errors.add("munos", message);
  56. // }else if(this.mpeople==0){
  57. // ActionMessage message = new ActionMessage("请选择一个会议主持人", false);
  58. // errors.add("mpeople", message);
  59. // }
  60. // }
  61. // return errors;
  62. return null;
  63. }
  64. /**
  65.  * Method reset
  66.  * 
  67.  * @param mapping
  68.  * @param request
  69.  */
  70. public void reset(ActionMapping mapping, HttpServletRequest request) {
  71. this.task = "add";
  72. this.mstatus=-1;
  73. }
  74. public String getMaffixname() {
  75. return maffixname;
  76. }
  77. public void setMaffixname(String maffixname) {
  78. this.maffixname = maffixname;
  79. }
  80. public String getMaffixpath() {
  81. return maffixpath;
  82. }
  83. public void setMaffixpath(String maffixpath) {
  84. this.maffixpath = maffixpath;
  85. }
  86. public String getMcontent() {
  87. return mcontent;
  88. }
  89. public void setMcontent(String mcontent) {
  90. this.mcontent = mcontent;
  91. }
  92. public String getMendtime() {
  93. return mendtime;
  94. }
  95. public void setMendtime(String mendtime) {
  96. this.mendtime = mendtime;
  97. }
  98. public long getMid() {
  99. return mid;
  100. }
  101. public void setMid(long mid) {
  102. this.mid = mid;
  103. }
  104. public String getMmemo() {
  105. return mmemo;
  106. }
  107. public void setMmemo(String mmemo) {
  108. this.mmemo = mmemo;
  109. }
  110. public String getMstarttime() {
  111. return mstarttime;
  112. }
  113. public void setMstarttime(String mstarttime) {
  114. this.mstarttime = mstarttime;
  115. }
  116. public long getMstatus() {
  117. return mstatus;
  118. }
  119. public void setMstatus(long mstatus) {
  120. this.mstatus = mstatus;
  121. }
  122. public String getMtitle() {
  123. return mtitle;
  124. }
  125. public void setMtitle(String mtitle) {
  126. this.mtitle = mtitle;
  127. }
  128. public String getMunos() {
  129. return munos;
  130. }
  131. public void setMunos(String munos) {
  132. this.munos = munos;
  133. }
  134. public long getRmid() {
  135. return rmid;
  136. }
  137. public void setRmid(long rmid) {
  138. this.rmid = rmid;
  139. }
  140. public String getTask() {
  141. return task;
  142. }
  143. public void setTask(String task) {
  144. this.task = task;
  145. }
  146. public long getMpeople() {
  147. return mpeople;
  148. }
  149. public void setMpeople(long mpeople) {
  150. this.mpeople = mpeople;
  151. }
  152. public String[] getAddmeet() {
  153. return addmeet;
  154. }
  155. public void setAddmeet(String[] addmeet) {
  156. this.addmeet = addmeet;
  157. }
  158. public String[] getArryusername() {
  159. return arryusername;
  160. }
  161. public void setArryusername(String[] arryusername) {
  162. this.arryusername = arryusername;
  163. }
  164. public String[] getRooms() {
  165. return rooms;
  166. }
  167. public void setRooms(String[] rooms) {
  168. this.rooms = rooms;
  169. }
  170. public long getAddressid() {
  171. return addressid;
  172. }
  173. public void setAddressid(long addressid) {
  174. this.addressid = addressid;
  175. }
  176. public long getMcancle() {
  177. return mcancle;
  178. }
  179. public void setMcancle(long mcancle) {
  180. this.mcancle = mcancle;
  181. }
  182. public String getMreason() {
  183. return mreason;
  184. }
  185. public void setMreason(String mreason) {
  186. this.mreason = mreason;
  187. }
  188. public long getMiaffix() {
  189. return miaffix;
  190. }
  191. public void setMiaffix(long miaffix) {
  192. this.miaffix = miaffix;
  193. }
  194. public String getUno() {
  195. return uno;
  196. }
  197. public void setUno(String uno) {
  198. this.uno = uno;
  199. }
  200. }