InventoryAnalysisDataListController.h 659 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // InventoryAnalysisDataListController.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 "PageModel.h"
  10. @interface InventoryAnalysisDataListController : BaseViewController
  11. /**
  12. tableview
  13. */
  14. @property(nonatomic,strong) RefreshTableView *refreshTableView;
  15. /**
  16. 回款排行列表
  17. */
  18. @property(nonatomic,strong) NSMutableArray *rankList;
  19. /**
  20. 回款排行分页列表
  21. */
  22. @property(nonatomic,strong) NSMutableArray *rankPagingList;
  23. /**
  24. 分页模型
  25. */
  26. @property(nonatomic,strong) PageModel* pageModel;
  27. /**
  28. 刷新数据
  29. */
  30. -(void)refreshData;
  31. @end