| 123456789101112131415161718192021222324252627282930313233 |
- //
- // PerformanceRankListCell.h
- // IBOSS
- //
- // Created by guan hong hou on 2018/6/4.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "PerformanceRankListModel.h"
- #import "UIColor+hexColor.h"
- #import "NSString+Tools.h"
- @interface PerformanceRankListCell : UITableViewCell
- @property(nonatomic,strong) UILabel *lblRankNo;
- @property(nonatomic,strong) UILabel *lblStaff;
- @property(nonatomic,strong) UILabel *lblSalesAmount;
- @property(nonatomic,strong) UILabel *lblCurrentMonthTaskAmount;
- @property(nonatomic,strong) UILabel *lblCompletePercent;
- @property(nonatomic,strong) UIView *bottomSeparator;
- @property(nonatomic,assign) CGFloat cellHeight;
- @property(nonatomic,strong) PerformanceRankListModel* rankListModel;
- -(void) setPerformanceRankListFrame:(PerformanceRankListModel*) performanceRankListModel;
- @end
|