Files
yinmeng-ios/xplan-ios/Main/Home/Presenter/XPHomeRecommendPresenter.h

30 lines
660 B
C
Raw Normal View History

2022-02-21 20:06:09 +08:00
//
// XPHomeRecommendPresenter.h
// xplan-ios
//
// Created by 冯硕 on 2022/2/21.
//
#import "BaseMvpPresenter.h"
NS_ASSUME_NONNULL_BEGIN
@interface XPHomeRecommendPresenter : BaseMvpPresenter
/// 获取首页顶部的轮播图
- (void)getHomeTopBannerList;
/// 获取首页推荐列表
- (void)getHomeRecommendRoomList;
/// 获取首页热门房间列表
- (void)getHomeHotRoomList;
2022-02-25 21:18:01 +08:00
/// 热门房间(个人房)列表
- (void)getHomePersonalRoomList;
/// 组队开黑房间列表
/// @param pageNum 当前的页数
- (void)getPlayGameWithTeam:(int)pageNum;
2023-03-15 11:35:24 +08:00
/// 获取全服礼物记录列表
- (void)getHomeGiftRecord;
2022-02-21 20:06:09 +08:00
@end
NS_ASSUME_NONNULL_END