AbstractTransstep.java
资源名称:(J2EE)oa.rar [点击查看]
上传用户:lm2018
上传日期:2015-12-12
资源大小:30449k
文件大小:4k
源码类别:
Jsp/Servlet
开发平台:
Java
- package com.oa.module.affair.affair;
- import com.oa.module.affair.affairreq.Transreq;
- /**
- * 事务类别持久类
- */
- /**
- * AbstractTransstep generated by MyEclipse - Hibernate Tools
- */
- public abstract class AbstractTransstep implements java.io.Serializable {
- // Fields
- private long sid;
- private long rqid;
- private long scurrentid;
- private String uno;
- private String sstatus;
- private long sprestep;
- private String snextuno;
- private String scurrenttime;
- private String snexttime;
- private String sresult;
- private String sdetail;
- private String sname;
- private String spath;
- // private Transreq ransreq;
- // Constructors
- /** default constructor */
- public AbstractTransstep() {
- }
- /** full constructor */
- 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) {
- this.rqid = rqid;
- this.scurrentid = scurrentid;
- this.uno = uno;
- this.sstatus = sstatus;
- this.sprestep = sprestep;
- this.snextuno = snextuno;
- this.scurrenttime = scurrenttime;
- this.snexttime = snexttime;
- this.sresult = sresult;
- this.sdetail = sdetail;
- this.sname = sname;
- this.spath = spath;
- }
- // Property accessors
- public long getSid() {
- return this.sid;
- }
- public void setSid(long sid) {
- this.sid = sid;
- }
- public long getRqid() {
- return this.rqid;
- }
- public void setRqid(long rqid) {
- this.rqid = rqid;
- }
- public long getScurrentid() {
- return this.scurrentid;
- }
- public void setScurrentid(long scurrentid) {
- this.scurrentid = scurrentid;
- }
- public String getUno() {
- return this.uno;
- }
- public void setUno(String uno) {
- this.uno = uno;
- }
- public String getSstatus() {
- return this.sstatus;
- }
- public void setSstatus(String sstatus) {
- this.sstatus = sstatus;
- }
- public long getSprestep() {
- return this.sprestep;
- }
- public void setSprestep(long sprestep) {
- this.sprestep = sprestep;
- }
- public String getSnextuno() {
- return this.snextuno;
- }
- public void setSnextuno(String snextuno) {
- this.snextuno = snextuno;
- }
- public String getScurrenttime() {
- return this.scurrenttime;
- }
- public void setScurrenttime(String scurrenttime) {
- this.scurrenttime = scurrenttime;
- }
- public String getSnexttime() {
- return this.snexttime;
- }
- public void setSnexttime(String snexttime) {
- this.snexttime = snexttime;
- }
- public String getSresult() {
- return this.sresult;
- }
- public void setSresult(String sresult) {
- this.sresult = sresult;
- }
- public String getSdetail() {
- return this.sdetail;
- }
- public void setSdetail(String sdetail) {
- this.sdetail = sdetail;
- }
- public String getSname() {
- return this.sname;
- }
- public void setSname(String sname) {
- this.sname = sname;
- }
- public String getSpath() {
- return this.spath;
- }
- public void setSpath(String spath) {
- this.spath = spath;
- }
- // public Transreq getRansreq() {
- // return ransreq;
- // }
- //
- //
- // public void setRansreq(Transreq ransreq) {
- // this.ransreq = ransreq;
- // }
- }