AbstractTchat.java
资源名称:(J2EE)oa.rar [点击查看]
上传用户:lm2018
上传日期:2015-12-12
资源大小:30449k
文件大小:3k
源码类别:
Jsp/Servlet
开发平台:
Java
- package com.oa.module.communicate.comm;
- /**
- * 聊天持久类
- * AbstractTchat generated by MyEclipse - Hibernate Tools
- */
- public abstract class AbstractTchat implements java.io.Serializable {
- // Fields
- private long cid;
- private String csendtime;
- private long csendid;
- private String caccepid;
- private String csendtype;
- private String ccontent;
- private String cisread;
- private String cmemo;
- private String did;
- private String flag;
- // Constructors
- /** default constructor */
- public AbstractTchat() {
- }
- /** full constructor */
- public AbstractTchat(String csendtime, long csendid, String caccepid, String csendtype, String ccontent, String cisread, String cmemo, String did) {
- this.csendtime = csendtime;
- this.csendid = csendid;
- this.caccepid = caccepid;
- this.csendtype = csendtype;
- this.ccontent = ccontent;
- this.cisread = cisread;
- this.cmemo = cmemo;
- this.did = did;
- }
- // Property accessors
- public long getCid() {
- return this.cid;
- }
- public void setCid(long cid) {
- this.cid = cid;
- }
- public String getCsendtime() {
- return this.csendtime;
- }
- public void setCsendtime(String csendtime) {
- this.csendtime = csendtime;
- }
- public long getCsendid() {
- return this.csendid;
- }
- public void setCsendid(long csendid) {
- this.csendid = csendid;
- }
- public String getCaccepid() {
- return this.caccepid;
- }
- public void setCaccepid(String caccepid) {
- this.caccepid = caccepid;
- }
- public String getCsendtype() {
- return this.csendtype;
- }
- public void setCsendtype(String csendtype) {
- this.csendtype = csendtype;
- }
- public String getCcontent() {
- return this.ccontent;
- }
- public void setCcontent(String ccontent) {
- this.ccontent = ccontent;
- }
- public String getCisread() {
- return this.cisread;
- }
- public void setCisread(String cisread) {
- this.cisread = cisread;
- }
- public String getCmemo() {
- return this.cmemo;
- }
- public void setCmemo(String cmemo) {
- this.cmemo = cmemo;
- }
- public String getDid() {
- return this.did;
- }
- public void setDid(String did) {
- this.did = did;
- }
- public String getFlag() {
- return flag;
- }
- public void setFlag(String flag) {
- this.flag = flag;
- }
- }