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

Jsp/Servlet

开发平台:

Java

  1. package com.oa.module.communicate.comm;
  2. /**
  3.  * 聊天持久类
  4.  * AbstractTchat generated by MyEclipse - Hibernate Tools
  5.  */
  6. public abstract class AbstractTchat  implements java.io.Serializable {
  7.     // Fields    
  8.      private long cid;
  9.      private String csendtime;
  10.      private long csendid;
  11.      private String caccepid;
  12.      private String csendtype;
  13.      private String ccontent;
  14.      private String cisread;
  15.      private String cmemo;
  16.      private String did;
  17.      private String flag;
  18.     // Constructors
  19.     /** default constructor */
  20.     public AbstractTchat() {
  21.     }
  22.     
  23.     /** full constructor */
  24.     public AbstractTchat(String csendtime, long csendid, String caccepid, String csendtype, String ccontent, String cisread, String cmemo, String did) {
  25.         this.csendtime = csendtime;
  26.         this.csendid = csendid;
  27.         this.caccepid = caccepid;
  28.         this.csendtype = csendtype;
  29.         this.ccontent = ccontent;
  30.         this.cisread = cisread;
  31.         this.cmemo = cmemo;
  32.         this.did = did;
  33.     }
  34.     
  35.    
  36.     // Property accessors
  37.     public long getCid() {
  38.         return this.cid;
  39.     }
  40.     
  41.     public void setCid(long cid) {
  42.         this.cid = cid;
  43.     }
  44.     public String getCsendtime() {
  45.         return this.csendtime;
  46.     }
  47.     
  48.     public void setCsendtime(String csendtime) {
  49.         this.csendtime = csendtime;
  50.     }
  51.     public long getCsendid() {
  52.         return this.csendid;
  53.     }
  54.     
  55.     public void setCsendid(long csendid) {
  56.         this.csendid = csendid;
  57.     }
  58.     public String getCaccepid() {
  59.         return this.caccepid;
  60.     }
  61.     
  62.     public void setCaccepid(String caccepid) {
  63.         this.caccepid = caccepid;
  64.     }
  65.     public String getCsendtype() {
  66.         return this.csendtype;
  67.     }
  68.     
  69.     public void setCsendtype(String csendtype) {
  70.         this.csendtype = csendtype;
  71.     }
  72.     public String getCcontent() {
  73.         return this.ccontent;
  74.     }
  75.     
  76.     public void setCcontent(String ccontent) {
  77.         this.ccontent = ccontent;
  78.     }
  79.     public String getCisread() {
  80.         return this.cisread;
  81.     }
  82.     
  83.     public void setCisread(String cisread) {
  84.         this.cisread = cisread;
  85.     }
  86.     public String getCmemo() {
  87.         return this.cmemo;
  88.     }
  89.     
  90.     public void setCmemo(String cmemo) {
  91.         this.cmemo = cmemo;
  92.     }
  93.     public String getDid() {
  94.         return this.did;
  95.     }
  96.     
  97.     public void setDid(String did) {
  98.         this.did = did;
  99.     }
  100. public String getFlag() {
  101. return flag;
  102. }
  103. public void setFlag(String flag) {
  104. this.flag = flag;
  105. }
  106.    
  107. }