Files
yinmeng-ios/xplan-ios/Main/Login/Presenter/LoginForgetPasswordPresent.h
2021-09-10 17:04:18 +08:00

26 lines
589 B
Objective-C

//
// LoginForgetPasswordPresent.h
// xplan-ios
//
// Created by 冯硕 on 2021/9/10.
//
#import "BaseMvpPresenter.h"
NS_ASSUME_NONNULL_BEGIN
@interface LoginForgetPasswordPresent : BaseMvpPresenter
/// 获取手机的验证码
/// @param phone 手机号
/// @param type 类型
- (void)phoneSmsCode:(NSString *)phone type:(int)type;
/// 没有登录的时候 重置密码
/// @param phone 手机号
/// @param newPwd 新的密码
/// @param smsCode 验证码
- (void)resetPassword:(NSString *)phone newPwd:(NSString *)newPwd smsCode:(NSString *)smsCode;
@end
NS_ASSUME_NONNULL_END