package chat.persist;
|
|
public class Message {
|
|
private String id;
|
private String spaceid;
|
private String spacecode;
|
private String typecode;
|
private int type;
|
private String path;
|
private String content;
|
private int persistflag;
|
private String senderid;
|
private long messageid;
|
private String statuscode;
|
private long timestamp;
|
private String parentid;
|
private int level;
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getSpaceid() {
|
return spaceid;
|
}
|
|
public void setSpaceid(String spaceid) {
|
this.spaceid = spaceid;
|
}
|
|
public String getSpacecode() {
|
return spacecode;
|
}
|
|
public void setSpacecode(String spacecode) {
|
this.spacecode = spacecode;
|
}
|
|
public String getTypecode() {
|
return typecode;
|
}
|
|
public void setTypecode(String typecode) {
|
this.typecode = typecode;
|
}
|
|
public String getPath() {
|
return path;
|
}
|
|
public void setPath(String path) {
|
this.path = path;
|
}
|
|
public String getContent() {
|
return content;
|
}
|
|
public void setContent(String content) {
|
this.content = content;
|
}
|
|
public int getType() {
|
return type;
|
}
|
|
public void setType(int type) {
|
this.type = type;
|
}
|
|
public int getPersistflag() {
|
return persistflag;
|
}
|
|
public void setPersistflag(int persistflag) {
|
this.persistflag = persistflag;
|
}
|
|
public String getSenderid() {
|
return senderid;
|
}
|
|
public void setSenderid(String senderid) {
|
this.senderid = senderid;
|
}
|
|
public long getMessageid() {
|
return messageid;
|
}
|
|
public void setMessageid(long messageid) {
|
this.messageid = messageid;
|
}
|
|
public String getStatuscode() {
|
return statuscode;
|
}
|
|
public void setStatuscode(String statuscode) {
|
this.statuscode = statuscode;
|
}
|
|
public long getTimestamp() {
|
return timestamp;
|
}
|
|
public void setTimestamp(long timestamp) {
|
this.timestamp = timestamp;
|
}
|
|
public String getParentid() {
|
return parentid;
|
}
|
|
public void setParentid(String parentid) {
|
this.parentid = parentid;
|
}
|
|
public int getLevel() {
|
return level;
|
}
|
|
public void setLevel(int level) {
|
this.level = level;
|
}
|
|
}
|