dkahgld

ZBProductGoodListCell.h 512B

12345678910111213141516171819202122232425
  1. //
  2. // ZBProductGoodListCell.h
  3. // ZBProject
  4. //
  5. // Created by 学丽 on 2019/4/15.
  6. // Copyright © 2019 ZB. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface ZBProductGoodListCell : UICollectionViewCell
  11. @property(nonatomic,strong)UIImageView *goodImgV;
  12. @property(nonatomic,strong)UILabel *titleLabel;
  13. @property(nonatomic,strong)UILabel *priceLabel;
  14. @property(nonatomic,strong)UILabel *makeLabel;
  15. @property(nonatomic,strong)ZBGoodModel *model;
  16. @end
  17. NS_ASSUME_NONNULL_END