47 lines
1.2 KiB
Objective-C
47 lines
1.2 KiB
Objective-C
//
|
||
// XPMineGiveDiamondPresenter.h
|
||
// YuMi
|
||
//
|
||
// Created by YuMi on 2022/10/19.
|
||
//
|
||
#import "BaseMvpPresenter.h"
|
||
|
||
NS_ASSUME_NONNULL_BEGIN
|
||
|
||
@interface XPMineGiveDiamondPresenter : BaseMvpPresenter
|
||
///得到转赠记录
|
||
-(void)getGiveDiamondRecord;
|
||
|
||
/// 获取用户钱包余额信息
|
||
- (void)getUserWalletInfo;
|
||
|
||
///确认支付
|
||
-(void)confirmActionWithPayWithToUid:(NSString *)touid diamondNum:(NSString *) diamondNum payPwd:(NSString *)payPwd;
|
||
///搜索转赠人
|
||
-(void)searchGivePeopleWith:(NSString *)erbanNo;
|
||
///获取转赠记录
|
||
-(void)getExamplesOfRecordWithUid:(NSString *)toUid type:(int)type page:(int)page;
|
||
///获取礼物
|
||
-(void)getPackGiftList;
|
||
///转赠礼物
|
||
-(void)giveGiftWithToUid:(NSString *)toUid giftId:(NSString *)giftId giftNum:(NSString *)giftNum;
|
||
|
||
///充值代理信息
|
||
- (void)rechargeUserInfo;
|
||
|
||
- (void)subrechargeInfoList;
|
||
|
||
|
||
/// yonghu1
|
||
/// - Parameters:
|
||
/// - periodType: 1: 当前周期,2: 上个周期
|
||
/// - page: 页数
|
||
/// - type: 1-金币转赠历史,2-代发薪资历史
|
||
- (void)userTransferHistory:(NSInteger)periodType
|
||
page:(NSInteger)page
|
||
type:(NSInteger)type;
|
||
|
||
@end
|
||
|
||
NS_ASSUME_NONNULL_END
|