Files
yinmeng-ios/xplan-ios/Main/Mine/View/EnterpriseRecharge/Presenter/XPEnterpriseRechargePresenter.h

22 lines
483 B
C
Raw Normal View History

2022-05-14 19:05:35 +08:00
//
// XPEnterpriseRechargePresenter.h
// xplan-ios
//
// Created by 冯硕 on 2022/5/14.
//
#import "BaseMvpPresenter.h"
NS_ASSUME_NONNULL_BEGIN
@interface XPEnterpriseRechargePresenter : BaseMvpPresenter
///获取充值列表
- (void)getRechargeList:(NSString *)channelType;
/// 获取钱包信息
- (void)getUserWalletInfo;
///发起支付
2022-05-17 21:04:50 +08:00
- (void)requestPay:(NSString *)chargeProdId payChannel:(NSString *)payChannel roomUid:(NSString *)roomUid;
2022-05-14 19:05:35 +08:00
@end
NS_ASSUME_NONNULL_END