// // DeliveryRequirementReceiptController.h // IBOSSHSH // // Created by ssl on 2018/1/12. // Copyright © 2018年 elongtian. All rights reserved. // #import "BaseViewController.h" #import "DispatchReceiptSearchModel.h" @interface DispatchRequirementReceiptController : BaseViewController /** 父类导航控制器 */ @property (strong,nonatomic) UINavigationController *cNav; /** 页号 */ @property (assign) NSInteger pageNumber; @property (nonatomic,assign) id refreshDelegate; /** 刷新tableview */ @property (strong,nonatomic) RefreshTableView *tableView; /** 下载管理器 */ @property (nonatomic,strong) ASIDownManager *mDownManager; /** 配送已回执数组 */ @property (nonatomic,strong) NSMutableArray *dataList; /** 查询按钮 */ @property(nonatomic,strong) UIButton *btnSearch; /** 抽屉视图控制器 */ @property (strong,nonatomic) SideSlipFilterController *filterController; /** 配送单号 */ @property(strong,nonatomic)NSString *arrangementNo; /** 开始日期 */ @property(strong,nonatomic)NSString *startDate; /** 结束日期 */ @property(strong,nonatomic)NSString *endDate; @property(strong,nonatomic)NSString *customerName; @property(strong,nonatomic)NSString *receiptNo; @property(strong,nonatomic)NSString *customerTelephone; @end