| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- //
- // StockingViewController.h
- // IBOSSmini
- //
- // Created by apple on 2017/5/15.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "StockingModel.h"
- #import "RefreshTableView.h"
- #import "SideSlipFilterController.h"
- @interface StockingViewController : BaseViewController
- // 查询条件
- @property(copy, nonatomic)NSString *stockNo;
- @property(copy, nonatomic)NSString *onlyCode;
- @property(copy, nonatomic)NSString *warehouse;
- /**
- 数据源dic数据
- */
- @property (strong, nonatomic) NSMutableArray *dataList;
- /**
- 数据源高度数据
- */
- @property (strong, nonatomic) NSMutableDictionary *heights;
- /**
- 数据源model数据
- */
- @property (strong, nonatomic) NSMutableArray *newdataList;
- /**
- model数据
- */
- @property(nonatomic,strong) StockingModel *infoModel;
- /**
- ASIDownManager
- */
- @property (nonatomic,strong) ASIDownManager *downManager;
- /**
- TableView
- */
- @property (nonatomic,strong) RefreshTableView *customTableView;
- /**
- 抽屉对象
- */
- @property (strong, nonatomic) SideSlipFilterController *filterController;
- @end
|