| 1234567891011121314151617181920212223242526272829303132333435363738 |
- //
- // InventoryAnalysisDataListController.h
- // IBOSS
- //
- // Created by ssl on 2018/1/4.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "PageModel.h"
- @interface InventoryAnalysisDataListController : BaseViewController
- /**
- tableview
- */
- @property(nonatomic,strong) RefreshTableView *refreshTableView;
- /**
- 回款排行列表
- */
- @property(nonatomic,strong) NSMutableArray *rankList;
- /**
- 回款排行分页列表
- */
- @property(nonatomic,strong) NSMutableArray *rankPagingList;
- /**
- 分页模型
- */
- @property(nonatomic,strong) PageModel* pageModel;
- /**
- 刷新数据
- */
- -(void)refreshData;
- @end
|