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

Jsp/Servlet

开发平台:

Java

  1. package com.oa.module.affair.affairreq;
  2. import com.oa.module.affair.affair.Transstep;
  3. /**
  4.  * 事务发起持久类
  5.  * AbstractTransreq generated by MyEclipse - Hibernate Tools
  6.  */
  7. public abstract class AbstractTransreq  implements java.io.Serializable {
  8.     // Fields    
  9.      private long rqid;
  10.      private String rtitle;
  11.      private String uno;
  12.      private long tno;
  13.      private String rgrade;
  14.      private String rstarttime;
  15.      private String rendtime;
  16.      private String rnexttime;
  17.      private String rlasttime;
  18.      private String rdetail;
  19.      private String rstatus;
  20.      private String rmemo;
  21.      private String tname;
  22.      private String reqUsername;     
  23.      private String starttime;     
  24.      private String endtime;
  25.      private String rresult;
  26.      private String currentid;
  27. //     private Transstep affairstep;
  28.     // Constructors
  29.     /** default constructor */
  30.     public AbstractTransreq() {
  31.     }
  32.     
  33.     /** full constructor */
  34.     public AbstractTransreq(String rtitle, String uno, long tno, String rgrade, String rstarttime, String rendtime, String rnexttime, String rlasttime, String rdetail, String rstatus, String rmemo) {
  35.         this.rtitle = rtitle;
  36.         this.uno = uno;
  37.         this.tno = tno;
  38.         this.rgrade = rgrade;
  39.         this.rstarttime = rstarttime;
  40.         this.rendtime = rendtime;
  41.         this.rnexttime = rnexttime;
  42.         this.rlasttime = rlasttime;
  43.         this.rdetail = rdetail;
  44.         this.rstatus = rstatus;
  45.         this.rmemo = rmemo;
  46.     }
  47.     
  48.    
  49.     // Property accessors
  50.     public long getRqid() {
  51.         return this.rqid;
  52.     }
  53.     
  54.     public void setRqid(long rqid) {
  55.         this.rqid = rqid;
  56.     }
  57.     public String getRtitle() {
  58.         return this.rtitle;
  59.     }
  60.     
  61.     public void setRtitle(String rtitle) {
  62.         this.rtitle = rtitle;
  63.     }
  64.     public String getUno() {
  65.         return this.uno;
  66.     }
  67.     
  68.     public void setUno(String uno) {
  69.         this.uno = uno;
  70.     }
  71.     public long getTno() {
  72.         return this.tno;
  73.     }
  74.     
  75.     public void setTno(long tno) {
  76.         this.tno = tno;
  77.     }
  78.     public String getRgrade() {
  79.         return this.rgrade;
  80.     }
  81.     
  82.     public void setRgrade(String rgrade) {
  83.         this.rgrade = rgrade;
  84.     }
  85.     public String getRstarttime() {
  86.         return this.rstarttime;
  87.     }
  88.     
  89.     public void setRstarttime(String rstarttime) {
  90.         this.rstarttime = rstarttime;
  91.     }
  92.     public String getRendtime() {
  93.         return this.rendtime;
  94.     }
  95.     
  96.     public void setRendtime(String rendtime) {
  97.         this.rendtime = rendtime;
  98.     }
  99.     public String getRnexttime() {
  100.         return this.rnexttime;
  101.     }
  102.     
  103.     public void setRnexttime(String rnexttime) {
  104.         this.rnexttime = rnexttime;
  105.     }
  106.     public String getRlasttime() {
  107.         return this.rlasttime;
  108.     }
  109.     
  110.     public void setRlasttime(String rlasttime) {
  111.         this.rlasttime = rlasttime;
  112.     }
  113.     public String getRdetail() {
  114.         return this.rdetail;
  115.     }
  116.     
  117.     public void setRdetail(String rdetail) {
  118.         this.rdetail = rdetail;
  119.     }
  120.     public String getRstatus() {
  121.         return this.rstatus;
  122.     }
  123.     
  124.     public void setRstatus(String rstatus) {
  125.         this.rstatus = rstatus;
  126.     }
  127.     public String getRmemo() {
  128.         return this.rmemo;
  129.     }
  130.     
  131.     public void setRmemo(String rmemo) {
  132.         this.rmemo = rmemo;
  133.     }
  134. public String getEndtime() {
  135. return endtime;
  136. }
  137. public void setEndtime(String endtime) {
  138. this.endtime = endtime;
  139. }
  140. public String getReqUsername() {
  141. return reqUsername;
  142. }
  143. public void setReqUsername(String reqUsername) {
  144. this.reqUsername = reqUsername;
  145. }
  146. public String getStarttime() {
  147. return starttime;
  148. }
  149. public void setStarttime(String starttime) {
  150. this.starttime = starttime;
  151. }
  152. public String getTname() {
  153. return tname;
  154. }
  155. public void setTname(String tname) {
  156. this.tname = tname;
  157. }
  158. public String getRresult() {
  159. return rresult;
  160. }
  161. public void setRresult(String rresult) {
  162. this.rresult = rresult;
  163. }
  164. public String getCurrentid() {
  165. return currentid;
  166. }
  167. public void setCurrentid(String currentid) {
  168. this.currentid = currentid;
  169. }
  170. // public Transstep getAffairstep() {
  171. // return affairstep;
  172. // }
  173. //
  174. //
  175. // public void setAffairstep(Transstep affairstep) {
  176. // this.affairstep = affairstep;
  177. // }
  178.    
  179. }