Files
peko-ios/YuMi/Modules/YMMine/Presenter/XPMineFootPrintPresenter.h
2023-07-14 18:50:55 +08:00

31 lines
648 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// YMMineFootPrintPresenter.h
// YUMI
//
// Created by YUMI on 2022/7/26.
//
#import "BaseMvpPresenter.h"
NS_ASSUME_NONNULL_BEGIN
@interface XPMineFootPrintPresenter : BaseMvpPresenter
///获取进房记录
/// @param page 当前页码
/// @param pageSize 每页数量
/// @param state 0刷新 1加载更多
- (void)getFootPrintListWithPage:(int)page pageSize:(int)pageSize state:(int)state;
/// 清除进房记录
/// @param roomUid 不传则清空所有
- (void)cleanFootPrint:(NSString *)roomUid;
/// 收藏房间
/// @param roomUid 房间uid
- (void)collectRoomWithRoomUid:(NSString *)roomUid;
@end
NS_ASSUME_NONNULL_END