Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
AbstractTchat.java
Package: (J2EE)oa.rar [view]
Upload User: lm2018
Upload Date: 2015-12-12
Package Size: 30449k
Code Size: 3k
Category:
Jsp/Servlet
Development Platform:
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;
- }
- }