// // InvoiceStyleViewController.h // IBOSS // // Created by 关宏厚 on 2020/4/30. // Copyright © 2020 elongtian. All rights reserved. // #import "BaseViewController.h" #import "InventoryGoodsDelegate.h" #define textFont [UIFont systemFontOfSize:14] @interface InvoiceStyleViewController : BaseViewController /** 搜索数组 */ @property (strong,nonatomic) NSMutableArray *arrSearch; /** 过滤数组 */ @property (strong,nonatomic) NSMutableArray *arrFilter; /** 委托 */ @property (weak,nonatomic) id inventoryDelegate; /** UISearchBar对象 */ @property (nonatomic,strong)UISearchBar *searchBar; /** UITableView对象 */ @property (nonatomic,strong) UITableView *tableView; /** 请求对象 */ @property (nonatomic,strong) ASIDownManager *mDownManager; @end