dkahgld

ZBGoodDetailViewCell.h 914B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // ZBGoodDetailView.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 <SDCycleScrollView.h>
  10. #import "ZBGoodModel.h"
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface ZBGoodDetailViewCell : UICollectionViewCell
  13. @property(nonatomic,strong)SDCycleScrollView *imgCycleView;
  14. @property(nonatomic,strong)UILabel *titleLabel;
  15. @property(nonatomic,strong)UILabel *priceLabel;
  16. @property(nonatomic,strong)UILabel *saleLabel;
  17. @property(nonatomic,strong)UILabel *quanLabel;
  18. @property(nonatomic,strong)UILabel *oldPricel;
  19. @property(nonatomic,strong)UIImageView *quanImgv;
  20. @property(nonatomic,strong)UIImageView *tipeImgV;
  21. @property(nonatomic,strong)ZBGoodModel *model;
  22. @property(nonatomic,strong)NSMutableArray *bannerArry;
  23. @property(nonatomic,strong)UIView *pointbackView;
  24. @property(nonatomic,strong)UILabel *pointLabel;
  25. @end
  26. NS_ASSUME_NONNULL_END