InvoiceStyleViewController.h 883 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. //
  2. // InvoiceStyleViewController.h
  3. // IBOSS
  4. //
  5. // Created by 关宏厚 on 2020/4/30.
  6. // Copyright © 2020 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. #import "InventoryGoodsDelegate.h"
  10. #define textFont [UIFont systemFontOfSize:14]
  11. @interface InvoiceStyleViewController : BaseViewController<UISearchBarDelegate,UITableViewDataSource,UITableViewDelegate>
  12. /**
  13. 搜索数组
  14. */
  15. @property (strong,nonatomic) NSMutableArray *arrSearch;
  16. /**
  17. 过滤数组
  18. */
  19. @property (strong,nonatomic) NSMutableArray *arrFilter;
  20. /**
  21. 委托
  22. */
  23. @property (weak,nonatomic) id<InventoryGoodsDelegate> inventoryDelegate;
  24. /**
  25. UISearchBar对象
  26. */
  27. @property (nonatomic,strong)UISearchBar *searchBar;
  28. /**
  29. UITableView对象
  30. */
  31. @property (nonatomic,strong) UITableView *tableView;
  32. /**
  33. 请求对象
  34. */
  35. @property (nonatomic,strong) ASIDownManager *mDownManager;
  36. @end