20 lines
384 B
Objective-C
20 lines
384 B
Objective-C
//
|
|
// LoginPasswordPresent.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2021/9/9.
|
|
//
|
|
|
|
#import "BaseMvpPresenter.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface LoginPasswordPresent : BaseMvpPresenter
|
|
/// 使用手机号和密码登录
|
|
/// @param phone 手机号
|
|
/// @param password 验证码
|
|
- (void)loginWithPhone:(NSString *)phone password:(NSString *)password;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|