| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- //
- // DeliveryRequirementReceiptController.h
- // IBOSSHSH
- //
- // Created by ssl on 2018/1/12.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- @interface DeliveryRequirementReceiptController : BaseViewController<UITableViewDataSource, UITableViewDelegate,RefreshTableViewDelegate>
- /**
- 父类导航控制器
- */
- @property (strong,nonatomic) UINavigationController *cNav;
- /**
- 页号
- */
- @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 (strong,nonatomic) SideSlipFilterController *filterController;
- /**
- 配送单号
- */
- @property(strong,nonatomic)NSString *deliveryNo;
- /**
- 开始日期
- */
- @property(strong,nonatomic)NSString *startDate;
- /**
- 结束日期
- */
- @property(strong,nonatomic)NSString *endDate;
- /**
- 回执类型
- */
- @property(strong,nonatomic)NSString *receiptType;
- @end
|