PerformanceRankListCell.h 863 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // PerformanceRankListCell.h
  3. // IBOSS
  4. //
  5. // Created by guan hong hou on 2018/6/4.
  6. // Copyright © 2018年 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "PerformanceRankListModel.h"
  10. #import "UIColor+hexColor.h"
  11. #import "NSString+Tools.h"
  12. @interface PerformanceRankListCell : UITableViewCell
  13. @property(nonatomic,strong) UILabel *lblRankNo;
  14. @property(nonatomic,strong) UILabel *lblStaff;
  15. @property(nonatomic,strong) UILabel *lblSalesAmount;
  16. @property(nonatomic,strong) UILabel *lblCurrentMonthTaskAmount;
  17. @property(nonatomic,strong) UILabel *lblCompletePercent;
  18. @property(nonatomic,strong) UIView *bottomSeparator;
  19. @property(nonatomic,assign) CGFloat cellHeight;
  20. @property(nonatomic,strong) PerformanceRankListModel* rankListModel;
  21. -(void) setPerformanceRankListFrame:(PerformanceRankListModel*) performanceRankListModel;
  22. @end