BindingSuccessViewController.h 1.09 KB
//
//  BindingSuccessViewController.h
//  Lighting
//
//  Created by 曹云霄 on 2016/11/30.
//  Copyright © 2016年 上海勾芒科技有限公司. All rights reserved.
//

#import "BaseViewController.h"

@interface BindingSuccessViewController : BaseViewController


/**
 用户名称、绑定卡类型
 */
@property (weak, nonatomic) IBOutlet UILabel *bankNameAndCardTypeLabel;

/**
 手机号码(发送验证码)
 */
@property (weak, nonatomic) IBOutlet UILabel *mobileNumberLabel;

/**
 输入验证码
 */
@property (weak, nonatomic) IBOutlet UITextField *verificationCodeTextField;

/**
 同意用户协议
 */
@property (weak, nonatomic) IBOutlet UIButton *agreeButton;

/**
 下一步
 */
@property (weak, nonatomic) IBOutlet UIButton *nextButton;

/**
 发送验证码
 */
@property (weak, nonatomic) IBOutlet UIButton *sendButton;


/**
 银行卡类型
 */
@property (nonatomic,assign) NSString *bankType;

/**
 是否同意用户协议
 */
@property (weak, nonatomic) IBOutlet UIButton *isAgreeButton;

/**
 验证信息
 */
@property (nonatomic,strong) TOCommAuthEntity *bankEntity;




@end