Files
peko-ios/YuMi/Modules/YMMine/View/GiveDiamond/Presenter/XPMineGiveDiamondPresenter.h
2025-02-28 19:04:09 +08:00

47 lines
1.2 KiB
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// 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