31 lines
796 B
Objective-C
31 lines
796 B
Objective-C
//
|
|
// XPLoginVerifBindPhoneViewController.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2021/9/18.
|
|
//
|
|
|
|
#import "MvpViewController.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
/**
|
|
手机号绑定的类型
|
|
- TTBindingPhoneNumTypeNormal: 普通状态,首次绑定
|
|
- TTBindingPhoneNumTypeConfirm : 验证状态:验证已绑定的手机
|
|
*/
|
|
typedef NS_ENUM(NSUInteger, TTBindingPhoneNumType) {
|
|
XPBindingPhoneNumTypeNormal = 0,
|
|
XPBindingPhoneNumTypeEdit = 1,
|
|
XPBindingPhoneNumTypeConfirm = 2,
|
|
};
|
|
@class UserInfoModel;
|
|
@interface XPLoginVerifBindPhoneViewController : MvpViewController
|
|
@property (nonatomic, assign) TTBindingPhoneNumType bindingPhoneNumType;
|
|
@property(nonatomic,assign) BOOL isLogout;
|
|
///用户信息
|
|
@property (nonatomic, strong) UserInfoModel *userInfo;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|