dkahgld

ZBProductListCell.h 838B

12345678910111213141516171819202122232425262728
  1. //
  2. // ZBProductListCell.h
  3. // ZBProject
  4. //
  5. // Created by 学丽 on 2019/3/27.
  6. // Copyright © 2019 ZB. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "ZBGoodModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface ZBProductListCell : UITableViewCell
  12. @property(nonatomic,strong)UIImageView *goodImgV;
  13. @property(nonatomic,strong)UILabel *titleLabel;
  14. @property(nonatomic,strong)UILabel *oldPriceL;
  15. @property(nonatomic,strong)UILabel *priceLabel;
  16. @property(nonatomic,strong)UIImageView *shopImg;
  17. @property(nonatomic,strong)UILabel *shopLabel;
  18. @property(nonatomic,strong)UIImageView *quanImgv;
  19. @property(nonatomic,strong)UILabel *quanLabel;//券金额
  20. @property(nonatomic,strong)UILabel *salesCountL;//销量
  21. @property(nonatomic,strong)UILabel *makeLabel;//赚多钱
  22. @property(nonatomic,strong)ZBGoodModel *model;
  23. @end
  24. NS_ASSUME_NONNULL_END