SettingNewViewController.h 771 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. //
  2. // SettingViewController.h
  3. // IBOSS
  4. //
  5. // Created by guan hong hou on 2018/6/25.
  6. // Copyright © 2018年 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. #import "DKPWModifyAlterView.h"
  10. @interface SettingNewViewController : BaseViewController
  11. /**
  12. 是否修改密码标示
  13. */
  14. @property (nonatomic,assign) BOOL clickFlag;
  15. /**
  16. ASIDownManager请求对象
  17. */
  18. @property (nonatomic,strong) ASIDownManager *downManager;
  19. /**
  20. 原密码
  21. */
  22. @property (nonatomic,strong) NSString *originalPassword;
  23. /**
  24. 新密码
  25. */
  26. @property (nonatomic,strong) NSString *newsPassword;
  27. /**
  28. 确认密码
  29. */
  30. @property (nonatomic,strong) NSString *confirmPassword;
  31. /**
  32. 修改密码view
  33. */
  34. @property (nonatomic,strong) DKPWModifyAlterView *passwordModify;
  35. @end