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

Jsp/Servlet

开发平台:

Java

  1. package com.oa.module.affair.affairtype;
  2. import java.util.HashSet;
  3. import java.util.Set;
  4. /**
  5.  * 事务类别持久类
  6.  * AbstractTranstype generated by MyEclipse - Hibernate Tools
  7.  */
  8. public abstract class AbstractTranstype  implements java.io.Serializable {
  9.     // Fields    
  10.      private long rtid;
  11.      private String tname;
  12.      private String txmlpath;
  13.      private String ttime;
  14.      private String uno;
  15.      private String tflag;
  16.      private long tstep;
  17.      private String trid;
  18.      private Set transpower = new HashSet();
  19.     // Constructors
  20.     /** default constructor */
  21.     public AbstractTranstype() {
  22.     }
  23.     
  24.     /** full constructor */
  25.     public AbstractTranstype(String tname, String txmlpath, String ttime, String uno, String tflag, long tstep, String trid) {
  26.         this.tname = tname;
  27.         this.txmlpath = txmlpath;
  28.         this.ttime = ttime;
  29.         this.uno = uno;
  30.         this.tflag = tflag;
  31.         this.tstep = tstep;
  32.         this.trid = trid;
  33.     }
  34.     
  35.    
  36.     // Property accessors
  37.     public long getRtid() {
  38.         return this.rtid;
  39.     }
  40.     
  41.     public void setRtid(long rtid) {
  42.         this.rtid = rtid;
  43.     }
  44.     public String getTname() {
  45.         return this.tname;
  46.     }
  47.     
  48.     public void setTname(String tname) {
  49.         this.tname = tname;
  50.     }
  51.     public String getTxmlpath() {
  52.         return this.txmlpath;
  53.     }
  54.     
  55.     public void setTxmlpath(String txmlpath) {
  56.         this.txmlpath = txmlpath;
  57.     }
  58.     public String getTtime() {
  59.         return this.ttime;
  60.     }
  61.     
  62.     public void setTtime(String ttime) {
  63.         this.ttime = ttime;
  64.     }
  65.     public String getUno() {
  66.         return this.uno;
  67.     }
  68.     
  69.     public void setUno(String uno) {
  70.         this.uno = uno;
  71.     }
  72.     public String getTflag() {
  73.         return this.tflag;
  74.     }
  75.     
  76.     public void setTflag(String tflag) {
  77.         this.tflag = tflag;
  78.     }
  79.     public long getTstep() {
  80.         return this.tstep;
  81.     }
  82.     
  83.     public void setTstep(long tstep) {
  84.         this.tstep = tstep;
  85.     }
  86.     public String getTrid() {
  87.         return this.trid;
  88.     }
  89.     
  90.     public void setTrid(String trid) {
  91.         this.trid = trid;
  92.     }
  93. public Set getTranspower() {
  94. return transpower;
  95. }
  96. public void setTranspower(Set transpower) {
  97. this.transpower = transpower;
  98. }
  99.    
  100. }