Files
real-e-party-iOS/YuMi/Modules/ShoppingMall/ShoppingMallDataPresent.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

27 lines
681 B
Objective-C
Raw Permalink 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.

//
// ShoppingMallDataPresent.h
// YuMi
//
// Created by P on 2024/11/13.
//
#import "BaseMvpPresenter.h"
#import "DressUpShopModel.h"
NS_ASSUME_NONNULL_BEGIN
@interface ShoppingMallDataPresent : BaseMvpPresenter
/// 获取装扮商城列表
/// @param type 类型 0铭牌1头饰2座驾3资料卡4聊天气泡
- (void)loadCategoryItems:(NSInteger)type
success:(void(^)(NSArray <DressUpShopModel *>* array))success
failure:(void(^)(NSError *error))failure;
- (void)buyItem:(NSString *)itemID
success:(void(^)(id obj))success
failure:(void(^)(NSError *error))failure;
@end
NS_ASSUME_NONNULL_END