MsgHome.java 851 Bytes
Newer Older
konghaorui committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
package com.yidianling.im.bean;

/**
 * 消息主页
 * Created by hgw on 2018/3/13.
 */

public class MsgHome {

    public String num;//未读消息数
    public int is_read;//是否已读:1未读;2已读
    public String head;
    public String title;
    public String content;
    public String time;
    public String type;//私聊群聊type=3
    public String toUid;
    public String toName;
    public int is_top;//是否置顶
    public String chat_type;//1私聊 2群聊
    public String doctor_id;//专家id
    public int utype = 0;

    public MsgHome(String head, String title, String content, String type, int is_read, String chat_type) {
        this.is_read = is_read;
        this.head = head;
        this.title = title;
        this.content = content;
        this.type = type;
        this.chat_type = chat_type;
    }
}