| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- //
- // SalesAnalysisListViewController
- // IBOSS
- //
- // Created by apple on 2017/5/15.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 功能描述:商品畅滞销分析表
- //
- #import <UIKit/UIKit.h>
- #import "SalesAnalysisModel.h"
- #import "RefreshTableView.h"
- @interface SalesAnalysisListViewController : BaseViewController
- /**
- 库区
- */
- @property (copy, nonatomic) NSString *warehouseIdStr;
- /**
- 品牌
- */
- @property (copy, nonatomic) NSString *brandIdStr;
- /**
- 数据源分页数据
- */
- @property (strong,nonatomic) NSMutableArray *arrDataList;
- /**
- 数据源model全部数据
- */
- @property (strong,nonatomic) NSMutableArray *arrAlldataList;
- /**
- model数据
- */
- @property (nonatomic,strong) SalesAnalysisModel *infoModel;
- /**
- ASIDownManager
- */
- @property (nonatomic,strong) ASIDownManager *downManager;
- /**
- TableView
- */
- @property (nonatomic,strong) RefreshTableView *customTableView;
- /**
- 抽屉对象
- */
- @property (strong,nonatomic) SideSlipFilterController *filterController;
- @end
|