2021-11-29 21:40:11 +08:00
|
|
|
//
|
|
|
|
// XPHomeSearchPresenter.h
|
|
|
|
// xplan-ios
|
|
|
|
//
|
|
|
|
// Created by 冯硕 on 2021/11/29.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import "BaseMvpPresenter.h"
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
|
|
@interface XPHomeSearchPresenter : BaseMvpPresenter
|
|
|
|
|
2021-12-02 18:06:11 +08:00
|
|
|
/// 搜索房间或者用户
|
|
|
|
/// @param key 搜索的关键字
|
|
|
|
/// @param type 类型 1 房间 2 用户
|
|
|
|
- (void)searchRoomList:(NSString *)key type:(NSString *)type;
|
2021-11-29 21:40:11 +08:00
|
|
|
|
2022-11-16 17:04:34 +08:00
|
|
|
/// 获取首页推荐列表
|
|
|
|
- (void)getHomeRecommendRoomList;
|
|
|
|
|
2022-11-29 15:37:03 +08:00
|
|
|
/// 获取大家都在搜的房间列表
|
|
|
|
/// @param sid keyID
|
|
|
|
- (void)getEveryOneSearchRoomList:(NSString *)sid;
|
|
|
|
|
2021-11-29 21:40:11 +08:00
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|