32 lines
729 B
Objective-C
32 lines
729 B
Objective-C
//
|
|
// YMMinePayPwdViewController.h
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2021/9/18.
|
|
//设置支付密码(初次) 重置支付密码
|
|
|
|
#import "MvpViewController.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
typedef NS_ENUM(NSUInteger, PayPasswordType) {
|
|
PayPasswordType_Set,///设置支付密码
|
|
PayPasswordType_Reset,///重置支付密码
|
|
};
|
|
|
|
@protocol XPMinePayPwdViewControllerDelegate <NSObject>
|
|
|
|
-(void)payPasswordSuccess;
|
|
|
|
@end
|
|
|
|
@class UserInfoModel;
|
|
@interface XPMinePayPwdViewController : MvpViewController
|
|
///
|
|
@property (nonatomic,assign) PayPasswordType type;
|
|
///用户信息
|
|
@property (nonatomic,strong) UserInfoModel *userInfo;
|
|
@property (nonatomic,weak) id<XPMinePayPwdViewControllerDelegate> delegate;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|