PositionNumberViewController.h 998 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. //
  2. // PositionNumberViewController.h
  3. // IBOSS
  4. //
  5. // Created by 关宏厚 on 2019/9/4.
  6. // Copyright © 2019 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. #import "BaseIDAndNameProtocol.h"
  10. @interface PositionNumberViewController : BaseViewController<UISearchBarDelegate,UITableViewDataSource,UITableViewDelegate>
  11. /**
  12. 查询数据
  13. */
  14. @property (strong,nonatomic) NSMutableArray *arrSearch;
  15. @property (nonatomic,weak) id<BaseIDAndNameProtocol> bDelegate;
  16. /**
  17. 从查询数据过滤数据
  18. */
  19. @property (strong,nonatomic) NSMutableArray *arrFilter;
  20. /**
  21. 是否是调用presentViewController标示
  22. */
  23. @property (assign,nonatomic) BOOL isPresentViewFlg;
  24. /**
  25. 类型
  26. */
  27. @property (assign,nonatomic) baseIdAndName showDialogViewTag;
  28. /**
  29. 请求管理
  30. */
  31. @property (nonatomic,strong) ASIDownManager *downManager;
  32. /**
  33. 查询过滤
  34. */
  35. @property (nonatomic,strong) UISearchBar *searchBar;
  36. /**
  37. UITableView
  38. */
  39. @property (nonatomic,strong) UITableView *tableView;
  40. @end