GoodsBannerCollectionViewCell.h 374 B

12345678910111213141516171819202122
  1. //
  2. // GoodsBannerCollectionViewCell.h
  3. // westkissMob
  4. //
  5. // Created by 王猛 on 2022/9/14.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "GoodsBannerModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface GoodsBannerCollectionViewCell : UICollectionViewCell
  11. @property(nonatomic, strong) GoodsBannerModel *model;
  12. @property(nonatomic, strong)UIImageView *imgV;
  13. @end
  14. NS_ASSUME_NONNULL_END