AffairTypeForm.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.affair.affairtype;
  4. import java.util.HashSet;
  5. import java.util.Set;
  6. import javax.servlet.http.HttpServletRequest;
  7. import org.apache.struts.action.ActionErrors;
  8. import org.apache.struts.action.ActionForm;
  9. import org.apache.struts.action.ActionMapping;
  10. /** 
  11.  * * 事务类别Actionform
  12.  * MyEclipse Struts
  13.  * Creation date: 01-20-2008
  14.  * 
  15.  * XDoclet definition:
  16.  * @struts.form name="affairTypeForm"
  17.  */
  18. public class AffairTypeForm extends ActionForm {
  19. /**
  20.  * 
  21.  */
  22. private static final long serialVersionUID = 1434450067985704410L;
  23. // --------------------------------------------------------- Instance Variables
  24.  private long rtid;
  25.      private String tname;
  26.      private String txmlpath;
  27.      private String ttime;
  28.      private String uno;
  29.      private String tflag;
  30.      private long tstep;
  31.      private Set transpower = new HashSet();
  32.      private String task;
  33. // --------------------------------------------------------- Methods
  34. /** 
  35.  * Method validate
  36.  * @param mapping
  37.  * @param request
  38.  * @return ActionErrors
  39.  */
  40. public ActionErrors validate(
  41. ActionMapping mapping,
  42. HttpServletRequest request) {
  43. // TODO Auto-generated method stub
  44. return null;
  45. }
  46. /** 
  47.  * Method reset
  48.  * @param mapping
  49.  * @param request
  50.  */
  51. public void reset(ActionMapping mapping, HttpServletRequest request) {
  52. this.tflag="0";
  53. // this.editedtype
  54. // this.task="editedtype";
  55. }
  56. public long getRtid() {
  57. return rtid;
  58. }
  59. public void setRtid(long rtid) {
  60. this.rtid = rtid;
  61. }
  62. public String getTflag() {
  63. return tflag;
  64. }
  65. public void setTflag(String tflag) {
  66. this.tflag = tflag;
  67. }
  68. public String getTname() {
  69. return tname;
  70. }
  71. public void setTname(String tname) {
  72. this.tname = tname;
  73. }
  74. public long getTstep() {
  75. return tstep;
  76. }
  77. public void setTstep(long tstep) {
  78. this.tstep = tstep;
  79. }
  80. public String getTtime() {
  81. return ttime;
  82. }
  83. public void setTtime(String ttime) {
  84. this.ttime = ttime;
  85. }
  86. public String getTxmlpath() {
  87. return txmlpath;
  88. }
  89. public void setTxmlpath(String txmlpath) {
  90. this.txmlpath = txmlpath;
  91. }
  92. public String getUno() {
  93. return uno;
  94. }
  95. public void setUno(String uno) {
  96. this.uno = uno;
  97. }
  98. public Set getTranspower() {
  99. return transpower;
  100. }
  101. public void setTranspower(Set transpower) {
  102. this.transpower = transpower;
  103. }
  104. public String getTask() {
  105. return task;
  106. }
  107. public void setTask(String task) {
  108. this.task = task;
  109. }
  110. }