31 lines
734 B
Objective-C
31 lines
734 B
Objective-C
//
|
|
// YMMinePayPwdPresenter.h
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2021/9/18.
|
|
//
|
|
|
|
#import "MainPresenter.h"
|
|
#import "YUMINNNN.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPMinePayPwdPresenter : MainPresenter
|
|
/// 获取手机的验证码
|
|
/// @param phone 手机号
|
|
/// @param type 类型
|
|
- (void)phoneSmsCode:(NSString *)phone type:(GetSmsType)type phoneAreaCode:(NSString *)phoneAreaCode;
|
|
|
|
/// 设置支付密码
|
|
/// @param password 支付密码
|
|
/// @param phone 手机号
|
|
/// @param veriftCode 验证码
|
|
- (void)setPayPassword:(NSString *)password phone:(NSString *)phone veriftCode:(NSString *)veriftCode;
|
|
|
|
/// 设置支付密码
|
|
/// @param password 支付密码
|
|
|
|
- (void)setPayPassword:(NSString *)password;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|