DoctorAssistantRespDtoBean.java 460 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
package com.yidianling.im.bean;

/**
 * Created by xj on 2019/7/16.
 */

public class DoctorAssistantRespDtoBean {
    public String chatUid;
    public int role; //1专家 其他助理

    public String getChatUid() {
        return chatUid;
    }

    public void setChatUid(String chatUid) {
        this.chatUid = chatUid;
    }

    public int getRole() {
        return role;
    }

    public void setRole(int role) {
        this.role = role;
    }
}