| 12345678910111213141516171819202122232425262728293031 |
- //
- // CommodityCell3.h
- // yunbaolive
- //
- // Created by ybRRR on 2020/3/3.
- // Copyright © 2020 cat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "StoreInfoView.h"
- #import "CommodityDetailModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @protocol goshopDelegate <NSObject>
- -(void)goshopClick;
- @end
- @interface CommodityCell3 : UITableViewCell
- {
- }
- @property (nonatomic, strong)UIImageView *headImg;
- @property (nonatomic, strong)UILabel *nameLb;
- @property (nonatomic, strong)StoreInfoView *infoView;
- @property (nonatomic, strong)CommodityDetailModel *model;
- @property(nonatomic, assign)id<goshopDelegate>delegate;
- @end
- NS_ASSUME_NONNULL_END
|