| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- //
- // SalesAnalysisListDataViewController.h
- // IBOSS
- //
- // Created by Simon on 2019/6/10.
- // Copyright © 2019 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "SalesAnalysisModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface SalesAnalysisListDataViewController : BaseViewController<UITableViewDataSource,UITableViewDelegate,RefreshTableViewDelegate>
- /**
- 刷新tableview
- */
- @property(nonatomic,strong) RefreshTableView *refreshTableView;
- /**
- 畅滞销排行列表
- */
- @property(nonatomic,strong) NSMutableArray *rankList;
- /**
- 畅滞销分页列表
- */
- @property(nonatomic,strong) NSMutableArray *rankPagingList;
- /**
- 分页模型格
- */
- @property(nonatomic,strong) PageModel* pageModel;
- /**
- model数据
- */
- @property (nonatomic,strong) SalesAnalysisModel *infoModel;
- /**
- 刷新数据函数
- */
- -(void)refreshData;
- @end
- NS_ASSUME_NONNULL_END
|