| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- //
- // SettingViewController.h
- // IBOSS
- //
- // Created by guan hong hou on 2018/6/25.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "DKPWModifyAlterView.h"
- @interface SettingNewViewController : BaseViewController
- /**
- 是否修改密码标示
- */
- @property (nonatomic,assign) BOOL clickFlag;
- /**
- ASIDownManager请求对象
- */
- @property (nonatomic,strong) ASIDownManager *downManager;
- /**
- 原密码
- */
- @property (nonatomic,strong) NSString *originalPassword;
- /**
- 新密码
- */
- @property (nonatomic,strong) NSString *newsPassword;
- /**
- 确认密码
- */
- @property (nonatomic,strong) NSString *confirmPassword;
- /**
- 修改密码view
- */
- @property (nonatomic,strong) DKPWModifyAlterView *passwordModify;
- @end
|