// // CommodityCell3.h // yunbaolive // // Created by ybRRR on 2020/3/3. // Copyright © 2020 cat. All rights reserved. // #import #import "StoreInfoView.h" #import "CommodityDetailModel.h" NS_ASSUME_NONNULL_BEGIN @protocol goshopDelegate -(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)iddelegate; @end NS_ASSUME_NONNULL_END