27 lines
681 B
Objective-C
27 lines
681 B
Objective-C
//
|
||
// 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
|