Files
peko-ios/YuMi/Modules/ShoppingMall/ShoppingMallDataPresent.h
2024-11-15 10:56:54 +08:00

28 lines
713 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.

//
// 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
type:(NSInteger)type
success:(void(^)(id obj))success
failure:(void(^)(NSError *error))failure;
@end
NS_ASSUME_NONNULL_END