// // CurrentStaffCurrentMonthPerformanceRankVc.h // IBOSS // // Created by guan hong hou on 2018/6/22. // Copyright © 2018年 elongtian. All rights reserved. // #import "BaseViewController.h" #import "CircleView.h" @interface CurrentStaffCurrentMonthPerformanceRankVc : BaseViewController @property(nonatomic,strong) NSMutableArray *currentStaffList; @property(nonatomic,strong) NSString *currentYear; @property(nonatomic,strong) NSString *currentMonth; @property (nonatomic,strong) ASIDownManager *mDownManager; @property(nonatomic,strong) NSMutableArray *dataList; @property(nonatomic,strong) UILabel *lblCompletePercent; @property(nonatomic,strong) UILabel *lblCurrentMontnCompleteAmount; @property(nonatomic,strong) UILabel *lblCurrentMontnTaskAmount; @property(nonatomic,strong) UILabel *lblCurrentMontnRank; @property(nonatomic,strong) PerformanceRankListModel *myPerformanceModel; -(void) loadStaffData:(NSMutableArray*)staffList; @end