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

Jsp/Servlet

开发平台:

Java

  1. package com.oa.module.affair.affair;
  2. import com.oa.module.affair.affairreq.Transreq;
  3. /**
  4.  * 事务类别持久类
  5.  */
  6. /**
  7.  * AbstractTransstep generated by MyEclipse - Hibernate Tools
  8.  */
  9. public abstract class AbstractTransstep  implements java.io.Serializable {
  10.     // Fields    
  11.      private long sid;
  12.      private long rqid;
  13.      private long scurrentid;
  14.      private String uno;
  15.      private String sstatus;
  16.      private long sprestep;
  17.      private String snextuno;
  18.      private String scurrenttime;
  19.      private String snexttime;
  20.      private String sresult;
  21.      private String sdetail;
  22.      private String sname;
  23.      private String spath;
  24. //     private Transreq ransreq;
  25.     // Constructors
  26.     /** default constructor */
  27.     public AbstractTransstep() {
  28.     }
  29.     
  30.     /** full constructor */
  31.     public AbstractTransstep(long rqid, long scurrentid, String uno, String sstatus, long sprestep, String snextuno, String scurrenttime, String snexttime, String sresult, String sdetail, String sname, String spath) {
  32.         this.rqid = rqid;
  33.         this.scurrentid = scurrentid;
  34.         this.uno = uno;
  35.         this.sstatus = sstatus;
  36.         this.sprestep = sprestep;
  37.         this.snextuno = snextuno;
  38.         this.scurrenttime = scurrenttime;
  39.         this.snexttime = snexttime;
  40.         this.sresult = sresult;
  41.         this.sdetail = sdetail;
  42.         this.sname = sname;
  43.         this.spath = spath;
  44.     }
  45.     
  46.    
  47.     // Property accessors
  48.     public long getSid() {
  49.         return this.sid;
  50.     }
  51.     
  52.     public void setSid(long sid) {
  53.         this.sid = sid;
  54.     }
  55.     public long getRqid() {
  56.         return this.rqid;
  57.     }
  58.     
  59.     public void setRqid(long rqid) {
  60.         this.rqid = rqid;
  61.     }
  62.     public long getScurrentid() {
  63.         return this.scurrentid;
  64.     }
  65.     
  66.     public void setScurrentid(long scurrentid) {
  67.         this.scurrentid = scurrentid;
  68.     }
  69.     public String getUno() {
  70.         return this.uno;
  71.     }
  72.     
  73.     public void setUno(String uno) {
  74.         this.uno = uno;
  75.     }
  76.     public String getSstatus() {
  77.         return this.sstatus;
  78.     }
  79.     
  80.     public void setSstatus(String sstatus) {
  81.         this.sstatus = sstatus;
  82.     }
  83.     public long getSprestep() {
  84.         return this.sprestep;
  85.     }
  86.     
  87.     public void setSprestep(long sprestep) {
  88.         this.sprestep = sprestep;
  89.     }
  90.     public String getSnextuno() {
  91.         return this.snextuno;
  92.     }
  93.     
  94.     public void setSnextuno(String snextuno) {
  95.         this.snextuno = snextuno;
  96.     }
  97.     public String getScurrenttime() {
  98.         return this.scurrenttime;
  99.     }
  100.     
  101.     public void setScurrenttime(String scurrenttime) {
  102.         this.scurrenttime = scurrenttime;
  103.     }
  104.     public String getSnexttime() {
  105.         return this.snexttime;
  106.     }
  107.     
  108.     public void setSnexttime(String snexttime) {
  109.         this.snexttime = snexttime;
  110.     }
  111.     public String getSresult() {
  112.         return this.sresult;
  113.     }
  114.     
  115.     public void setSresult(String sresult) {
  116.         this.sresult = sresult;
  117.     }
  118.     public String getSdetail() {
  119.         return this.sdetail;
  120.     }
  121.     
  122.     public void setSdetail(String sdetail) {
  123.         this.sdetail = sdetail;
  124.     }
  125.     public String getSname() {
  126.         return this.sname;
  127.     }
  128.     
  129.     public void setSname(String sname) {
  130.         this.sname = sname;
  131.     }
  132.     public String getSpath() {
  133.         return this.spath;
  134.     }
  135.     
  136.     public void setSpath(String spath) {
  137.         this.spath = spath;
  138.     }
  139. // public Transreq getRansreq() {
  140. // return ransreq;
  141. // }
  142. //
  143. //
  144. // public void setRansreq(Transreq ransreq) {
  145. // this.ransreq = ransreq;
  146. // }
  147.    
  148. }