RecentExpert.java 807 Bytes
Newer Older
konghaorui committed
1 2
package com.yidianling.tests;

YKai committed
3
import androidx.annotation.Keep;
konghaorui committed
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 44

/**
 * 聊过天的专家列表
 * Created by hgw on 2018/3/8.
 */
@Keep
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;
    }
}