
- Removed YuMi/Library/ (138 MB, not tracked) - Removed YuMi/Resources/ (23 MB, not tracked) - Removed old version assets (566 files, not tracked) - Excluded Pods/, xcuserdata/ and other build artifacts - Clean repository optimized for company server deployment
40 lines
977 B
Objective-C
40 lines
977 B
Objective-C
//
|
|
// YMMineRechargePresenter.h
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2021/9/24.
|
|
//
|
|
|
|
#import "BaseMvpPresenter.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPMineRechargePresenter : BaseMvpPresenter
|
|
|
|
/// 获取钱包信息
|
|
- (void)getUserWalletInfo;
|
|
/// 请求内购列表
|
|
/// @param channel 目前是8
|
|
- (void)requestRechargeListWithChannel:(NSString *)channel;
|
|
|
|
/// 获取充值的订单编号
|
|
/// @param chargeProdId 苹果服务器的充值 的id
|
|
- (void)requestIAPRechargeOrderWithChargeProdId:(NSString *)chargeProdId;
|
|
|
|
/// 充值成功二次验证
|
|
/// @param orderId 订单编号
|
|
/// @param transcationId 商品id
|
|
- (void)checkReceiptWithOrderId:(NSString *)orderId transcationId:(NSString *)transcationId errorToast:(BOOL)errorToast;
|
|
|
|
/// 批量验证内购掉单
|
|
/// @param transcations 凭据的数组
|
|
- (void)checkTranscationIds:(NSArray *)transcations;
|
|
//充值banner位
|
|
-(void)getBannerList;
|
|
//联系客服
|
|
-(void)getContactCustomerService;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|