ChargerTableViewCell.h 1.1 KB

1234567891011121314151617181920212223242526272829
  1. //
  2. // ChargerTableViewCell.h
  3. // BuguLive
  4. //
  5. // Created by fanwe2014 on 2016/11/24.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class LiveDataModel;
  10. @interface ChargerTableViewCell : UITableViewCell
  11. @property (weak, nonatomic) IBOutlet UILabel *moneyLabel; //消费金额
  12. @property (weak, nonatomic) IBOutlet UILabel *timeLabel; //时间
  13. @property (weak, nonatomic) IBOutlet UIImageView *headImgView; //消费头像
  14. @property (weak, nonatomic) IBOutlet UILabel *nameLabel; //名字
  15. @property (weak, nonatomic) IBOutlet UIImageView *sexImgView; //性别
  16. @property (weak, nonatomic) IBOutlet UIImageView *rankImgView; //等级
  17. @property (weak, nonatomic) IBOutlet UILabel *lookLabel;
  18. @property (strong, nonatomic) GlobalVariables *BuguLive;
  19. @property (nonatomic, strong) UIView *lineView; //分割线
  20. /*
  21. type 判断是付费记录还是收费记录0付费 1收费
  22. */
  23. - (void)setCellWithDict:(LiveDataModel *)model andType:(int)type andLive_pay_type:(int)live_pay_type;
  24. @end