Files
real-e-party-iOS/YuMi/Modules/YMMine/Presenter/XPMineFootPrintPresenter.h
edwinQQQ a35a711be6 chore: Initial clean commit
- Removed YuMi/Library/ (138 MB, not tracked)
- Removed YuMi/Resources/ (23 MB, not tracked)
- Removed old version assets (566 files, not tracked)
- Excluded Pods/, xcuserdata/ and other build artifacts
- Clean repository optimized for company server deployment
2025-10-09 16:19:14 +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