package com.yeshi.fanli.entity.bus.msg;
|
|
import java.util.Date;
|
|
/**
|
* 总的历消息记录
|
*
|
* @author Administrator
|
*
|
*/
|
public class MessageHistory {
|
private Long id;
|
private MsgTypeEnum msgType;
|
private String content;
|
private Date createTime;
|
private Date updateTime;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public MsgTypeEnum getMsgType() {
|
return msgType;
|
}
|
|
public void setMsgType(MsgTypeEnum msgType) {
|
this.msgType = msgType;
|
}
|
|
public String getContent() {
|
return content;
|
}
|
|
public void setContent(String content) {
|
this.content = content;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public Date getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(Date updateTime) {
|
this.updateTime = updateTime;
|
}
|
}
|