ShopMallCell.h 707 B

12345678910111213141516171819202122232425
  1. //
  2. // ShopMallCell.h
  3. // YBVideo
  4. //
  5. // Created by ybRRR on 2023/7/14.
  6. // Copyright © 2023 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface ShopMallCell : UICollectionViewCell
  11. @property (weak, nonatomic) IBOutlet UIImageView *thumbImgV;
  12. @property (weak, nonatomic) IBOutlet UILabel *titleL;
  13. @property (weak, nonatomic) IBOutlet UILabel *priceL;
  14. @property (weak, nonatomic) IBOutlet UILabel *oldPriceL;
  15. @property (weak, nonatomic) IBOutlet UIView *statusView;
  16. @property (weak, nonatomic) IBOutlet UILabel *statusLabel;
  17. @property (weak, nonatomic) IBOutlet UILabel *sellCountLb;
  18. @property (strong, nonatomic) IBOutlet UILabel *lineLb;
  19. @end
  20. NS_ASSUME_NONNULL_END