| 1234567891011121314151617181920212223 |
- //
- // CurrentStaffPerformanceRankVcViewController.h
- // IBOSS
- //
- // Created by guan hong hou on 2018/6/22.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- @interface CurrentStaffLastMonthPerformanceRankVc : BaseViewController
- @property(nonatomic,strong) NSMutableArray *currentStaffList;
- @property(nonatomic,strong) NSString *currentYear;
- @property(nonatomic,strong) NSString *lastMonth;
- @property (nonatomic,strong) ASIDownManager *mDownManager;
- @property(nonatomic,strong) NSMutableArray *dataList;
- @property(nonatomic,strong) UILabel *lblCompletePercent;
- @property(nonatomic,strong) UILabel *lblLastMontnCompleteAmount;
- @property(nonatomic,strong) UILabel *lblLastMontnTaskAmount;
- @property(nonatomic,strong) UILabel *lblLastMontnRank;
- @property(nonatomic,strong) PerformanceRankListModel *myPerformanceModel;
- -(void) loadStaffData:(NSMutableArray*)staffList;
- @end
|