CommodityCell3.h 642 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // CommodityCell3.h
  3. // yunbaolive
  4. //
  5. // Created by ybRRR on 2020/3/3.
  6. // Copyright © 2020 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "StoreInfoView.h"
  10. #import "CommodityDetailModel.h"
  11. NS_ASSUME_NONNULL_BEGIN
  12. @protocol goshopDelegate <NSObject>
  13. -(void)goshopClick;
  14. @end
  15. @interface CommodityCell3 : UITableViewCell
  16. {
  17. }
  18. @property (nonatomic, strong)UIImageView *headImg;
  19. @property (nonatomic, strong)UILabel *nameLb;
  20. @property (nonatomic, strong)StoreInfoView *infoView;
  21. @property (nonatomic, strong)CommodityDetailModel *model;
  22. @property(nonatomic, assign)id<goshopDelegate>delegate;
  23. @end
  24. NS_ASSUME_NONNULL_END