36 lines
731 B
Objective-C
36 lines
731 B
Objective-C
//
|
|
// XPWishGiftProtocol.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2022/10/18.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@protocol XPWishGiftProtocol <NSObject>
|
|
@optional
|
|
///添加礼物心愿成功
|
|
- (void)addWishGiftSuccess;
|
|
|
|
///创建心愿单成功
|
|
- (void)createWishGiftItemSuccess;
|
|
|
|
///删除心愿单成功
|
|
- (void)deleteWishGiftItemSuccess;
|
|
///获取心愿礼物列表
|
|
- (void)getWishGiftListSuccess:(NSArray *)list;
|
|
|
|
///助理用户列表
|
|
- (void)getWishGiftAssistUserListSuccess:(NSArray *)list;
|
|
|
|
///礼物配置列表
|
|
- (void)wishGiftConfigListSucces:(NSArray *)list level:(NSString *)level;
|
|
|
|
///历史心愿成功
|
|
- (void)wishGiftHistroyListSuccess:(NSArray *)list;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|