| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- //
- // InventoryViewController.h
- // IBOSSmini
- //
- // Created by apple on 2017/5/15.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "InventoryModel.h"
- #import "RefreshTableView.h"
- #import "SideSlipFilterController.h"
- #import "SideSlipModel.h"
- @interface InventoryViewController : BaseViewController
- // 查询条件
- @property(copy, nonatomic) NSString *goodsCodeStr;
- @property(copy, nonatomic) NSString *goodsNameStr;
- @property(copy, nonatomic) NSString *onlyCodeStr;
- @property(copy, nonatomic) NSString *warehouseIdStr;
- @property(copy, nonatomic) NSString *brandIdStr;
- @property(copy, nonatomic) NSString *varietyIdStr;
- @property(nonatomic,assign) Boolean isFilterQuantityEqZero;
- /**
- 数据源dic数据
- */
- @property (strong, nonatomic) NSMutableArray *dataList;
- /**
- 数据源高度数据
- */
- @property (strong, nonatomic) NSMutableDictionary *heights;
- /**
- 数据源model数据
- */
- @property (strong, nonatomic) NSMutableArray *newdataList;
- /**
- model数据
- */
- @property(nonatomic,strong) InventoryModel *infoModel;
- /**
- ASIDownManager
- */
- @property (nonatomic,strong) ASIDownManager *downManager;
- /**
- TableView
- */
- @property (nonatomic,strong) RefreshTableView *customTableView;
- /**
- 抽屉对象
- */
- @property (strong, nonatomic) SideSlipFilterController *filterController;
- @end
|