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

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.office.dept;
  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.action.ActionMessage;
  9. /** 
  10.  * MyEclipse Struts
  11.  * Creation date: 01-21-2008
  12.  * 
  13.  * XDoclet definition:
  14.  * @struts.form name="deptForm"
  15.  */
  16. public class DeptForm extends ActionForm {
  17.     private String did;
  18. private String dname;
  19. private long uno;
  20. private String dfunction;
  21. private String dmemo;
  22. private String dflag;
  23. private String uname;
  24. private String method;
  25.     
  26. public ActionErrors validate(ActionMapping mapping,
  27. HttpServletRequest request) {
  28. ActionErrors errors = new ActionErrors();
  29. if (this.method != null && this.method.equals("add") && 
  30. this.method.equals("update")) {
  31. if (this.dname == null || this.dname.trim().equals("")) {
  32. ActionMessage message = new ActionMessage("部门名为空!", false);
  33. errors.add("dname", message);
  34. }
  35. }
  36. return errors;
  37. }
  38. /** 
  39.  * Method reset
  40.  * @param mapping
  41.  * @param request
  42.  */
  43. public void reset(ActionMapping mapping, HttpServletRequest request) {
  44. this.method = "addlist";
  45. }
  46. public String getDflag() {
  47. return dflag;
  48. }
  49. public void setDflag(String dflag) {
  50. this.dflag = dflag;
  51. }
  52. public String getDfunction() {
  53. return dfunction;
  54. }
  55. public void setDfunction(String dfunction) {
  56. this.dfunction = dfunction;
  57. }
  58. public String getDid() {
  59. return did;
  60. }
  61. public void setDid(String did) {
  62. this.did = did;
  63. }
  64. public String getDmemo() {
  65. return dmemo;
  66. }
  67. public void setDmemo(String dmemo) {
  68. this.dmemo = dmemo;
  69. }
  70. public String getDname() {
  71. return dname;
  72. }
  73. public void setDname(String dname) {
  74. this.dname = dname;
  75. }
  76. public String getMethod() {
  77. return method;
  78. }
  79. public void setMethod(String method) {
  80. this.method = method;
  81. }
  82. public long getUno() {
  83. return uno;
  84. }
  85. public void setUno(long uno) {
  86. this.uno = uno;
  87. }
  88. public String getUname() {
  89. return uname;
  90. }
  91. public void setUname(String uname) {
  92. this.uname = uname;
  93. }
  94. }