MsgDetail.java 402 Bytes
Newer Older
konghaorui committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
package com.yidianling.im.bean;

/**
     * type: 消息类型
     * 1、2、501 502为预约消息;
     * 3、4、503、1001、1002为心事消息;
     */
public class MsgDetail {
    public int id;//消息的id
    public int type;//
    public String content;
    public String create_time;
    public String image_url;//消息封面图

    public String relation_id1;//关联的业务id


}