| 12345678910111213141516171819202122232425262728293031 |
- //
- // SalesAnalysisListNewChartViewController.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 SalesAnalysisListNewChartViewController : BaseViewController
- /**
- 销售业绩排行列表
- */
- @property (strong,nonatomic) NSArray *rankList;
- @property(strong,nonatomic) UIView *histogramView;
- @property(strong,nonatomic) UIView *bottomSeparatorView;
- @property (nonatomic, strong) NSString * sortType;
- /**
- 刷新数据函数
- */
- -(void)refreshData;
- @end
- NS_ASSUME_NONNULL_END
|