酷店

KDPRecommendGoodCell.h 852B

12345678910111213141516171819202122232425262728
  1. //
  2. // KDPRecommendGoodCell.h
  3. // KuDianProject
  4. //
  5. // Created by 学丽 on 2019/7/4.
  6. // Copyright © 2019 KDP. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "KDPGoodsModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface KDPRecommendGoodCell : UICollectionViewCell
  12. @property(nonatomic,strong)UIImageView *recomImgV;
  13. @property(nonatomic,strong)UILabel *recomTitleL;
  14. @property(nonatomic,strong)UILabel *recomShopL;
  15. @property(nonatomic,strong)UIImageView *recomShopiconImg;
  16. @property(nonatomic,strong)UILabel *recomPriceL;
  17. @property(nonatomic,strong)UILabel *recomOriginL;
  18. @property(nonatomic,strong)UILabel *recomVolumeL;
  19. @property(nonatomic,strong)UIImageView *couponImgV;
  20. @property(nonatomic,strong)UILabel *couponPriceL;
  21. @property(nonatomic,strong)UILabel *recomprofitL;
  22. @property(nonatomic,strong)KDPGoodsModel *model;
  23. @end
  24. NS_ASSUME_NONNULL_END