SalesAnalysisListViewController.h 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. //
  2. // SalesAnalysisListViewController
  3. // IBOSS
  4. //
  5. // Created by apple on 2017/5/15.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. // 功能描述:商品畅滞销分析表
  9. //
  10. #import <UIKit/UIKit.h>
  11. #import "SalesAnalysisModel.h"
  12. #import "RefreshTableView.h"
  13. @interface SalesAnalysisListViewController : BaseViewController
  14. /**
  15. 库区
  16. */
  17. @property (copy, nonatomic) NSString *warehouseIdStr;
  18. /**
  19. 品牌
  20. */
  21. @property (copy, nonatomic) NSString *brandIdStr;
  22. /**
  23. 数据源分页数据
  24. */
  25. @property (strong,nonatomic) NSMutableArray *arrDataList;
  26. /**
  27. 数据源model全部数据
  28. */
  29. @property (strong,nonatomic) NSMutableArray *arrAlldataList;
  30. /**
  31. model数据
  32. */
  33. @property (nonatomic,strong) SalesAnalysisModel *infoModel;
  34. /**
  35. ASIDownManager
  36. */
  37. @property (nonatomic,strong) ASIDownManager *downManager;
  38. /**
  39. TableView
  40. */
  41. @property (nonatomic,strong) RefreshTableView *customTableView;
  42. /**
  43. 抽屉对象
  44. */
  45. @property (strong,nonatomic) SideSlipFilterController *filterController;
  46. @end