| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- //
- // PositionNumberViewController.h
- // IBOSS
- //
- // Created by 关宏厚 on 2019/9/4.
- // Copyright © 2019 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "BaseIDAndNameProtocol.h"
- @interface PositionNumberViewController : BaseViewController<UISearchBarDelegate,UITableViewDataSource,UITableViewDelegate>
- /**
- 查询数据
- */
- @property (strong,nonatomic) NSMutableArray *arrSearch;
- @property (nonatomic,weak) id<BaseIDAndNameProtocol> bDelegate;
- /**
- 从查询数据过滤数据
- */
- @property (strong,nonatomic) NSMutableArray *arrFilter;
- /**
- 是否是调用presentViewController标示
- */
- @property (assign,nonatomic) BOOL isPresentViewFlg;
- /**
- 类型
- */
- @property (assign,nonatomic) baseIdAndName showDialogViewTag;
- /**
- 请求管理
- */
- @property (nonatomic,strong) ASIDownManager *downManager;
- /**
- 查询过滤
- */
- @property (nonatomic,strong) UISearchBar *searchBar;
- /**
- UITableView
- */
- @property (nonatomic,strong) UITableView *tableView;
- @end
|