// // AuctionGoodsCell.h // BuguLive // // Created by 王珂 on 16/10/11. // Copyright © 2016年 xfg. All rights reserved. // #import @class AuctionGoodsCell; @class ShopGoodsModel; @protocol AuctionGoodsCellDelegate - (void)clickAuctionWithAuctionGoodsCell:(AuctionGoodsCell *)cell; @end @interface AuctionGoodsCell : UITableViewCell @property (nonatomic, strong) ShopGoodsModel * model; @property (nonatomic, weak) iddelegate; + (instancetype)cellWithTableView:(UITableView *)tableView; @end