1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package com.hdl.linkpm.sdk.home.callback;
|
| import com.hdl.linkpm.sdk.core.callback.IBaseCallBack;
| import com.hdl.linkpm.sdk.home.bean.RoomInfoListBean;
|
| /**
| * Created by jlchen on 12/10/21.
| */
| public interface IRoomListCallBack extends IBaseCallBack {
| /**
| * 成功回调
| */
| void onSuccess(RoomInfoListBean bean);
| }
|
|