CurrentStaffCurrentMonthPerformanceRankVc.h 955 B

1234567891011121314151617181920212223
  1. //
  2. // CurrentStaffCurrentMonthPerformanceRankVc.h
  3. // IBOSS
  4. //
  5. // Created by guan hong hou on 2018/6/22.
  6. // Copyright © 2018年 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. #import "CircleView.h"
  10. @interface CurrentStaffCurrentMonthPerformanceRankVc : BaseViewController
  11. @property(nonatomic,strong) NSMutableArray *currentStaffList;
  12. @property(nonatomic,strong) NSString *currentYear;
  13. @property(nonatomic,strong) NSString *currentMonth;
  14. @property (nonatomic,strong) ASIDownManager *mDownManager;
  15. @property(nonatomic,strong) NSMutableArray *dataList;
  16. @property(nonatomic,strong) UILabel *lblCompletePercent;
  17. @property(nonatomic,strong) UILabel *lblCurrentMontnCompleteAmount;
  18. @property(nonatomic,strong) UILabel *lblCurrentMontnTaskAmount;
  19. @property(nonatomic,strong) UILabel *lblCurrentMontnRank;
  20. @property(nonatomic,strong) PerformanceRankListModel *myPerformanceModel;
  21. -(void) loadStaffData:(NSMutableArray*)staffList;
  22. @end