27 lines
639 B
Objective-C
27 lines
639 B
Objective-C
//
|
|
// YMMineVerifIdentityPresenter.h
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2021/9/18.
|
|
//
|
|
|
|
#import "MainPresenter.h"
|
|
#import "YUMINNNN.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPMineVerifIdentityPresenter : MainPresenter
|
|
|
|
/// 获取手机的验证码
|
|
/// @param phone 手机号
|
|
/// @param type 类型
|
|
- (void)phoneSmsCode:(NSString *)phone type:(GetSmsType)type phoneAreaCode:(NSString *)phoneAreaCode;
|
|
|
|
|
|
/// 校验手机验证码接口
|
|
/// @param moblieNum 手机号码
|
|
/// @param code 验证码
|
|
- (void)checkMoblieCodeWithMoblie:(NSString *)moblieNum code:(NSString *)code phoneAreaCode:(NSString *)phoneAreaCode;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|