BusinessDepartmentTreeViewController.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. //
  2. // BusinessDepartmentTreeViewController.h
  3. // IBOSS
  4. //
  5. // Created by guan hong hou on 2017/9/7.
  6. // Copyright © 2017年 elongtian. All rights reserved.
  7. //
  8. // 功能描述:业务部门树型控制器
  9. #import "BaseViewController.h"
  10. #import "CustomerReportTextProtocol.h"
  11. @interface BusinessDepartmentTreeViewController : BaseViewController<UITableViewDelegate,UITableViewDataSource,CustomerReportTextProtocol>
  12. /**
  13. 请求对象
  14. */
  15. @property (nonatomic,strong) ASIDownManager *downManager;
  16. /**
  17. 查询结果数据
  18. */
  19. /**
  20. 业务部门数组
  21. */
  22. @property (strong,nonatomic) NSMutableArray *arrSearch;
  23. /**
  24. 树型数组
  25. */
  26. @property (strong,nonatomic) NSMutableArray *treeArray;
  27. /**
  28. 业务部门回调
  29. */
  30. @property (nonatomic,weak) id<CustomerReportTextProtocol> cDelegate;
  31. /**
  32. 部门code数组
  33. */
  34. @property (strong,nonatomic) NSMutableArray *departmentCodeResultArray;
  35. /**
  36. 部门名称数组
  37. */
  38. @property (strong,nonatomic) NSMutableArray *departmentNameResultArray;
  39. /**
  40. 部门table view
  41. */
  42. @property(nonatomic,strong) UITableView *departmentTableView;
  43. /**
  44. 控制器展示页面方式
  45. */
  46. @property (assign,nonatomic) BOOL isPresentViewFlag;
  47. @end