| 1234567891011121314151617181920212223242526272829 |
- //
- // PerformanceRankListVc.h
- // IBOSS
- //
- // Created by guan hong hou on 2018/6/4.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "PerformanceRankListModel.h"
- #import "PerformanceRankListCell.h"
- #import "DateFormat.h"
- @interface PerformanceRankListVc : BaseViewController<UITableViewDataSource,UITableViewDelegate>
- @property(nonatomic,strong) UITableView *tableView;
- @property(nonatomic,strong) UIView *performanceRankHeaderView;
- @property(nonatomic,strong) UILabel *lblRankNumberOneName;
- @property(nonatomic,strong) UILabel *lblSalesAmount;
- @property(nonatomic,strong) UILabel *lblCurrentMonthTask;
- @property(nonatomic,strong) UILabel *lblCompletePercent;
- @property(nonatomic,strong) NSMutableArray *dataList;
- @property(nonatomic,strong) NSString *currentYear;
- @property(nonatomic,strong) NSString *currentMonth;
- @property (nonatomic,strong) ASIDownManager *mDownManager;
- @property(nonatomic,strong) NSMutableArray *staffList;
- @end
|