// // PositionNumberViewController.h // IBOSS // // Created by 关宏厚 on 2019/9/4. // Copyright © 2019 elongtian. All rights reserved. // #import "BaseViewController.h" #import "BaseIDAndNameProtocol.h" @interface PositionNumberViewController : BaseViewController /** 查询数据 */ @property (strong,nonatomic) NSMutableArray *arrSearch; @property (nonatomic,weak) id 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