// // BusinessDepartmentTreeViewController.h // IBOSS // // Created by guan hong hou on 2017/9/7. // Copyright © 2017年 elongtian. All rights reserved. // // 功能描述:业务部门树型控制器 #import "BaseViewController.h" #import "CustomerReportTextProtocol.h" @interface BusinessDepartmentTreeViewController : BaseViewController /** 请求对象 */ @property (nonatomic,strong) ASIDownManager *downManager; /** 查询结果数据 */ /** 业务部门数组 */ @property (strong,nonatomic) NSMutableArray *arrSearch; /** 树型数组 */ @property (strong,nonatomic) NSMutableArray *treeArray; /** 业务部门回调 */ @property (nonatomic,weak) id cDelegate; /** 部门code数组 */ @property (strong,nonatomic) NSMutableArray *departmentCodeResultArray; /** 部门名称数组 */ @property (strong,nonatomic) NSMutableArray *departmentNameResultArray; /** 部门table view */ @property(nonatomic,strong) UITableView *departmentTableView; /** 控制器展示页面方式 */ @property (assign,nonatomic) BOOL isPresentViewFlag; @end