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

Jsp/Servlet

开发平台:

Java

  1. package com.oa.module.meet.hibernate;
  2. /**
  3.  * AbstractTmeetroom generated by MyEclipse - Hibernate Tools
  4.  */
  5. public abstract class AbstractTmeetroom  implements java.io.Serializable {
  6.     // Fields    
  7.      private long rmid;
  8.      private String rname;
  9.      private String raddress;
  10.      private long rnumber;
  11.      private long rstate;
  12.      private String rmemo;
  13.     // Constructors
  14.     /** default constructor */
  15.     public AbstractTmeetroom() {
  16.     }
  17.     
  18.     /** full constructor */
  19.     public AbstractTmeetroom(String rname, String raddress, long rnumber, long rstate,String rmemo) {
  20.         this.rname = rname;
  21.         this.raddress = raddress;
  22.         this.rnumber = rnumber;
  23.         this.rstate = rstate;
  24.         this.rmemo=rmemo;
  25.     }
  26.     
  27.    
  28.     // Property accessors
  29.     public long getRmid() {
  30.         return this.rmid;
  31.     }
  32.     
  33.     public void setRmid(long rmid) {
  34.         this.rmid = rmid;
  35.     }
  36.     public String getRname() {
  37.         return this.rname;
  38.     }
  39.     
  40.     public void setRname(String rname) {
  41.         this.rname = rname;
  42.     }
  43.     public String getRaddress() {
  44.         return this.raddress;
  45.     }
  46.     
  47.     public void setRaddress(String raddress) {
  48.         this.raddress = raddress;
  49.     }
  50.     public long getRnumber() {
  51.         return this.rnumber;
  52.     }
  53.     
  54.     public void setRnumber(long rnumber) {
  55.         this.rnumber = rnumber;
  56.     }
  57.     public long getRstate() {
  58.         return this.rstate;
  59.     }
  60.     
  61.     public void setRstate(long rstate) {
  62.         this.rstate = rstate;
  63.     }
  64. public String getRmemo() {
  65. return rmemo;
  66. }
  67. public void setRmemo(String rmemo) {
  68. this.rmemo = rmemo;
  69. }
  70.    
  71. }