Files
real-e-party-iOS/YuMi/Modules/YMMine/Presenter/XPMineVerifIdentityPresenter.h
edwinQQQ a35a711be6 chore: Initial clean commit
- Removed YuMi/Library/ (138 MB, not tracked)
- Removed YuMi/Resources/ (23 MB, not tracked)
- Removed old version assets (566 files, not tracked)
- Excluded Pods/, xcuserdata/ and other build artifacts
- Clean repository optimized for company server deployment
2025-10-09 16:19:14 +08:00

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