RecentExpert.java 782 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 33 34 35 36 37 38 39 40 41 42 43
package com.yidianling.dynamic.model;


/**
 * 聊过天的专家列表
 * Created by xiongyu on 2017/5/5.
 */

public class RecentExpert {
    private String uid;//专家id
    private String head;//专家头像
    private String name;//专家名

    public RecentExpert(String uid, String head, String name) {
        this.uid = uid;
        this.head = head;
        this.name = name;
    }

    public String getUid() {
        return uid;
    }

    public void setUid(String uid) {
        this.uid = uid;
    }

    public String getHead() {
        return head;
    }

    public void setHead(String head) {
        this.head = head;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }
}