SettlementTypeVC.h 671 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // SettlementTypeVC.h
  3. // IBOSS
  4. //
  5. // Created by apple on 16/1/14.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. // 功能描述:收款方式视图控制器
  9. #import "BaseViewController.h"
  10. #import "SettlementTypeCell.h"
  11. #import "SettlementTypeProtocol.h"
  12. @interface SettlementTypeVC : BaseViewController<UISearchBarDelegate,UITableViewDataSource,UITableViewDelegate>
  13. /**
  14. 收款方式代理
  15. */
  16. @property (weak) id<SettlementTypeProtocol> sDelegate;
  17. /**
  18. 搜索结果数组
  19. */
  20. @property (strong) NSMutableArray *arrSearchData;
  21. /**
  22. 搜索结果过滤数组
  23. */
  24. @property (strong) NSMutableArray *arrFilterData;
  25. @end