PerformanceRankListVc.h 994 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // PerformanceRankListVc.h
  3. // IBOSS
  4. //
  5. // Created by guan hong hou on 2018/6/4.
  6. // Copyright © 2018年 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. #import "PerformanceRankListModel.h"
  10. #import "PerformanceRankListCell.h"
  11. #import "DateFormat.h"
  12. @interface PerformanceRankListVc : BaseViewController<UITableViewDataSource,UITableViewDelegate>
  13. @property(nonatomic,strong) UITableView *tableView;
  14. @property(nonatomic,strong) UIView *performanceRankHeaderView;
  15. @property(nonatomic,strong) UILabel *lblRankNumberOneName;
  16. @property(nonatomic,strong) UILabel *lblSalesAmount;
  17. @property(nonatomic,strong) UILabel *lblCurrentMonthTask;
  18. @property(nonatomic,strong) UILabel *lblCompletePercent;
  19. @property(nonatomic,strong) NSMutableArray *dataList;
  20. @property(nonatomic,strong) NSString *currentYear;
  21. @property(nonatomic,strong) NSString *currentMonth;
  22. @property (nonatomic,strong) ASIDownManager *mDownManager;
  23. @property(nonatomic,strong) NSMutableArray *staffList;
  24. @end