InventoryAnalysisViewController.h 720 B

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // InventoryAnalysisViewController.h
  3. // IBOSS
  4. //
  5. // Created by ssl on 2018/1/4.
  6. // Copyright © 2018年 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. #import "PageSwitchView.h"
  10. @interface InventoryAnalysisViewController : BaseViewController
  11. @property (nonatomic, strong) PageSwitchView *page;
  12. /**
  13. 回款总额
  14. */
  15. @property (nonatomic,strong) UILabel *paymentAmountLabel;
  16. /**
  17. 数据下载器
  18. */
  19. @property (nonatomic,strong) ASIDownManager *downManager;
  20. /**
  21. 抽屉控制器
  22. */
  23. @property (strong,nonatomic) SideSlipFilterController *filterController;
  24. /**
  25. 排行列表
  26. */
  27. @property (strong,nonatomic) NSMutableArray *rankList;
  28. @property (strong,nonatomic) UIView *noDataView;
  29. @end