24 lines
561 B
Objective-C
24 lines
561 B
Objective-C
//
|
|
// XPEnterpriseProtocol.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2022/5/14.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@class EnterpriseRechargeListInfoModel, WalletInfoModel;
|
|
@protocol XPEnterpriseRechargeProtocol <NSObject>
|
|
///请求钱包余额信息
|
|
- (void)getUserWalletInfo:(WalletInfoModel *)balanceInfo;
|
|
|
|
///获取充值列表成功
|
|
- (void)getRechargeListSuccess:(EnterpriseRechargeListInfoModel *)info;
|
|
///请求订单成功
|
|
- (void)requestPaySuccess:(id)data payChannel:(NSString *)payChannel;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|