SalesAnalysisListViewController.h 1019 B

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. @interface SalesAnalysisListViewController : BaseViewController
  13. /**
  14. 库区
  15. */
  16. @property (copy, nonatomic) NSString *warehouseIdStr;
  17. /**
  18. 品牌
  19. */
  20. @property (copy, nonatomic) NSString *brandIdStr;
  21. /**
  22. 数据源分页数据
  23. */
  24. @property (strong,nonatomic) NSMutableArray *arrDataList;
  25. /**
  26. 数据源model全部数据
  27. */
  28. @property (strong,nonatomic) NSMutableArray *arrAlldataList;
  29. /**
  30. model数据
  31. */
  32. @property (nonatomic,strong) SalesAnalysisModel *infoModel;
  33. /**
  34. ASIDownManager
  35. */
  36. @property (nonatomic,strong) ASIDownManager *downManager;
  37. /**
  38. TableView
  39. */
  40. @property (nonatomic,strong) RefreshTableView *customTableView;
  41. /**
  42. 抽屉对象
  43. */
  44. @property (strong,nonatomic) SideSlipFilterController *filterController;
  45. @end