ResponsiblePersonViewController.h 654 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // ResponsiblePersonViewController.h
  3. // IBOSS
  4. //
  5. // Created by apple on 2017/5/27.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. // 功能描述:责任人控制器
  9. //
  10. #import "BaseViewController.h"
  11. #import "ResponsiblePersonModel.h"
  12. #import "ResponsiblePersonProtocol.h"
  13. @interface ResponsiblePersonViewController : BaseViewController
  14. /**
  15. 查询数据
  16. */
  17. @property (nonatomic,strong) NSMutableArray *arrSearch;
  18. /**
  19. 从查询数据过滤数据
  20. */
  21. @property (nonatomic,strong) NSMutableArray *arrFilter;
  22. /**
  23. 代理
  24. */
  25. @property (nonatomic,weak) id<ResponsiblePersonProtocol> respDelegate;
  26. @end