// // InventoryAnalysisViewController.h // IBOSS // // Created by ssl on 2018/1/4. // Copyright © 2018年 elongtian. All rights reserved. // #import "BaseViewController.h" #import "PageSwitchView.h" @interface InventoryAnalysisViewController : BaseViewController @property (nonatomic, strong) PageSwitchView *page; /** 回款总额 */ @property (nonatomic,strong) UILabel *paymentAmountLabel; /** 数据下载器 */ @property (nonatomic,strong) ASIDownManager *downManager; /** 抽屉控制器 */ @property (strong,nonatomic) SideSlipFilterController *filterController; /** 排行列表 */ @property (strong,nonatomic) NSMutableArray *rankList; @property (strong,nonatomic) UIView *noDataView; @end