RepairUnreceiptVC.h 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. //
  2. // RepairUnreceiptVC.h
  3. // IBOSS
  4. //
  5. // Created by guan hong hou on 2017/7/10.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. // 功能描述:维修未回执控制器
  9. #import "BaseViewController.h"
  10. #import "RepairUnReceiptInfo.h"
  11. @interface RepairUnreceiptVC : BaseViewController<UITableViewDataSource, UITableViewDelegate,RefreshTableViewDelegate,FollowUpBrowseProtocol,DKScanDelegate>
  12. /**
  13. 导航控制器
  14. */
  15. @property (strong,nonatomic) UINavigationController *cNav;
  16. /**
  17. 页号
  18. */
  19. @property (strong,nonatomic) NSString *pageNumber;
  20. /**
  21. tableview
  22. */
  23. @property (strong,nonatomic) RefreshTableView *tableView;
  24. /**
  25. 下载管理器
  26. */
  27. @property (nonatomic,strong) ASIDownManager *mDownManager;
  28. /**
  29. 维修未回执数组
  30. */
  31. @property (nonatomic,strong) NSMutableArray *dataList;
  32. /**
  33. 维修未回执信息
  34. */
  35. @property (nonatomic,strong)RepairUnReceiptInfo *repairUnReceiptInfo;
  36. /**
  37. 抽屉对象
  38. */
  39. @property (strong,nonatomic) SideSlipFilterController *filterController;
  40. - (void)ReloadList;
  41. @end