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

import com.ydl.ydlcommon.data.http.BaseCommand;

/**
 * Created by hgw on 2018/3/13.
 */

//私聊 获取聊天者的订单关系数据
public class GetExpert extends BaseCommand {

    public int toUid;
    public int canTalk;//为3的时候扣分

    public GetExpert(int toUid, int canTalk) {
        this.toUid = toUid;
        this.canTalk = canTalk;
    }

}