CurrentStaffLastMonthPerformanceRankVc.h 920 B

1234567891011121314151617181920212223
  1. //
  2. // CurrentStaffPerformanceRankVcViewController.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. @interface CurrentStaffLastMonthPerformanceRankVc : BaseViewController
  10. @property(nonatomic,strong) NSMutableArray *currentStaffList;
  11. @property(nonatomic,strong) NSString *currentYear;
  12. @property(nonatomic,strong) NSString *lastMonth;
  13. @property (nonatomic,strong) ASIDownManager *mDownManager;
  14. @property(nonatomic,strong) NSMutableArray *dataList;
  15. @property(nonatomic,strong) UILabel *lblCompletePercent;
  16. @property(nonatomic,strong) UILabel *lblLastMontnCompleteAmount;
  17. @property(nonatomic,strong) UILabel *lblLastMontnTaskAmount;
  18. @property(nonatomic,strong) UILabel *lblLastMontnRank;
  19. @property(nonatomic,strong) PerformanceRankListModel *myPerformanceModel;
  20. -(void) loadStaffData:(NSMutableArray*)staffList;
  21. @end