package com.yeshi.fanli.entity.bus.msg;
|
|
import java.util.Date;
|
|
import org.yeshi.utils.mybatis.Column;
|
import org.yeshi.utils.mybatis.Table;
|
|
/***
|
* 消息内容新版
|
*
|
* @author Administrator
|
*
|
*/
|
@Table("yeshi_ec_msg_extra")
|
public class MsgExtra {
|
// 消息的类型
|
public final static String MSG_TYPE_ORDER = "order";
|
public final static String MSG_TYPE_MONEY = "money";
|
public final static String MSG_TYPE_ACCOUNT = "account";
|
public final static String MSG_TYPE_INVITE = "invite";
|
public final static String MSG_TYPE_OTHER = "other";
|
|
@Column(name = "mea_id")
|
private Long id;
|
@Column(name = "mea_rid")
|
private Long rid; // 关联id
|
@Column(name = "mea_type")
|
private String type;// 类型
|
@Column(name = "mea_content")
|
private String content;// 内容
|
@Column(name = "mea_create_time")
|
private Date createTime;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Long getRid() {
|
return rid;
|
}
|
|
public void setRid(Long rid) {
|
this.rid = rid;
|
}
|
|
public String getType() {
|
return type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
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;
|
}
|
|
}
|