SalesAnalysisListDataViewController.h 883 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. //
  2. // SalesAnalysisListDataViewController.h
  3. // IBOSS
  4. //
  5. // Created by Simon on 2019/6/10.
  6. // Copyright © 2019 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. #import "SalesAnalysisModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface SalesAnalysisListDataViewController : BaseViewController<UITableViewDataSource,UITableViewDelegate,RefreshTableViewDelegate>
  12. /**
  13. 刷新tableview
  14. */
  15. @property(nonatomic,strong) RefreshTableView *refreshTableView;
  16. /**
  17. 畅滞销排行列表
  18. */
  19. @property(nonatomic,strong) NSMutableArray *rankList;
  20. /**
  21. 畅滞销分页列表
  22. */
  23. @property(nonatomic,strong) NSMutableArray *rankPagingList;
  24. /**
  25. 分页模型格
  26. */
  27. @property(nonatomic,strong) PageModel* pageModel;
  28. /**
  29. model数据
  30. */
  31. @property (nonatomic,strong) SalesAnalysisModel *infoModel;
  32. /**
  33. 刷新数据函数
  34. */
  35. -(void)refreshData;
  36. @end
  37. NS_ASSUME_NONNULL_END