| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- //
- // RepairUnreceiptVC.h
- // IBOSS
- //
- // Created by guan hong hou on 2017/7/10.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 功能描述:维修未回执控制器
- #import "BaseViewController.h"
- #import "RepairUnReceiptInfo.h"
- @interface RepairUnreceiptVC : BaseViewController<UITableViewDataSource, UITableViewDelegate,RefreshTableViewDelegate,FollowUpBrowseProtocol,DKScanDelegate>
- /**
- 导航控制器
- */
- @property (strong,nonatomic) UINavigationController *cNav;
- /**
- 页号
- */
- @property (strong,nonatomic) NSString *pageNumber;
- /**
- tableview
- */
- @property (strong,nonatomic) RefreshTableView *tableView;
- /**
- 下载管理器
- */
- @property (nonatomic,strong) ASIDownManager *mDownManager;
- /**
- 维修未回执数组
- */
- @property (nonatomic,strong) NSMutableArray *dataList;
- /**
- 维修未回执信息
- */
- @property (nonatomic,strong)RepairUnReceiptInfo *repairUnReceiptInfo;
- /**
- 抽屉对象
- */
- @property (strong,nonatomic) SideSlipFilterController *filterController;
- - (void)ReloadList;
- @end
|