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

Jsp/Servlet

开发平台:

Java

  1. package com.oa.module.affair.affairpower;
  2. import com.oa.module.affair.affairtype.Transtype;
  3. /**
  4.  * 事务权限持久类
  5.  * AbstractTranspower generated by MyEclipse - Hibernate Tools
  6.  */
  7. public abstract class AbstractTranspower  implements java.io.Serializable {
  8.     // Fields    
  9.      private long tpno;
  10.      private long tpid;
  11.      private long rtid;
  12.      private String uno;
  13.      private String rqid;
  14.      private Transtype transtype;
  15.     // Constructors
  16.     /** default constructor */
  17.     public AbstractTranspower() {
  18.     }
  19. /** minimal constructor */
  20.     public AbstractTranspower(long tpid) {
  21.         this.tpid = tpid;
  22.     }
  23.     
  24.     /** full constructor */
  25.     public AbstractTranspower(long tpid, long rtid, String uno, String rqid) {
  26.         this.tpid = tpid;
  27.         this.rtid = rtid;
  28.         this.uno = uno;
  29.         this.rqid = rqid;
  30.     }
  31.     
  32.    
  33.     // Property accessors
  34.     public long getTpno() {
  35.         return this.tpno;
  36.     }
  37.     
  38.     public void setTpno(long tpno) {
  39.         this.tpno = tpno;
  40.     }
  41.     public long getTpid() {
  42.         return this.tpid;
  43.     }
  44.     
  45.     public void setTpid(long tpid) {
  46.         this.tpid = tpid;
  47.     }
  48.     public long getRtid() {
  49.         return this.rtid;
  50.     }
  51.     
  52.     public void setRtid(long rtid) {
  53.         this.rtid = rtid;
  54.     }
  55.     public String getUno() {
  56.         return this.uno;
  57.     }
  58.     
  59.     public void setUno(String uno) {
  60.         this.uno = uno;
  61.     }
  62.     public String getRqid() {
  63.         return this.rqid;
  64.     }
  65.     
  66.     public void setRqid(String rqid) {
  67.         this.rqid = rqid;
  68.     }
  69. public Transtype getTranstype() {
  70. return transtype;
  71. }
  72. public void setTranstype(Transtype transtype) {
  73. this.transtype = transtype;
  74. }
  75.    
  76. }