| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- //
- // InstallUnreceiptVC.h
- // IBOSS
- //
- // Created by guan hong hou on 2017/7/10.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 功能描述:安装未回执视图控制器
- #import "BaseViewController.h"
- #import "UnInstallationInfo.h"
- #import "UnInstallationInfoFrame.h"
- #import "DialTelephoneDelegate.h"
- @interface InstallUnreceiptVC : BaseViewController<UITableViewDataSource, UITableViewDelegate,RefreshTableViewDelegate,FollowUpBrowseProtocol,DialTelephoneDelegate,DKScanDelegate>
- /**
- 父类导航控制器
- */
- @property (strong,nonatomic) UINavigationController *cNav;
- /**
- 未安装信息
- */
- @property (strong,nonatomic) UnInstallationInfo *unInstallationInfo;
- /**
- 页号
- */
- @property (assign) NSInteger pageNumber;
- /**
- 刷新tableview
- */
- @property (strong,nonatomic) RefreshTableView *tableView;
- /**
- 下载管理器
- */
- @property (nonatomic,strong) ASIDownManager *mDownManager;
- /**
- 安装未回执数组
- */
- @property (nonatomic,strong) NSMutableArray *dataList;
- /**
- 搜索按钮
- */
- @property(nonatomic,strong) UIButton *btnSearch;
- /**
- 安排单号
- */
- @property(nonatomic,strong) NSString *arrangementNo;
- /**
- 安装单号
- */
- @property(nonatomic,strong) NSString *installationNo;
- /**
- 开始日期
- */
- @property(nonatomic,strong) NSString *startDate;
- /**
- 结束日期
- */
- @property(nonatomic,strong) NSString *endDate;
- /**
- 客户名称
- */
- @property(nonatomic,strong) NSString *customerName;
- /**
- 抽屉控制器
- */
- @property (strong,nonatomic) SideSlipFilterController *filterController;
- - (void)ReloadList;
- @end
|