dkahgld

ZBOrderDataCell.h 876B

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