酷店

KDPDetailGoodInformationView.h 925B

123456789101112131415161718192021222324252627282930
  1. //
  2. // KDPDetailGoodInformationView.h
  3. // KuDianProject
  4. //
  5. // Created by 学丽 on 2019/7/9.
  6. // Copyright © 2019 KDP. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "KDPGoodsModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface KDPDetailGoodInformationView : UIView<SDCycleScrollViewDelegate>
  12. @property(nonatomic,strong)SDCycleScrollView *imgView;
  13. @property(nonatomic,strong)UIImageView *shopImgV;
  14. @property(nonatomic,strong)UILabel *detailTitleL;
  15. @property(nonatomic,strong)UILabel *priceL;
  16. @property(nonatomic,strong)UIButton *collectButton;
  17. @property(nonatomic,strong)UILabel *volumeL;
  18. @property(nonatomic,strong)UILabel *originalLabel;
  19. @property(nonatomic,copy)void(^returnBlock)(void);
  20. @property(nonatomic,strong)KDPGoodsModel *model;
  21. @property(nonatomic,strong)UILabel *profitsLabel;
  22. @property(nonatomic,strong)UIImageView *couponImgV;
  23. @property(nonatomic,strong)UILabel *couponPriceL;
  24. @end
  25. NS_ASSUME_NONNULL_END