// // AuctionGoodsView.h // BuguLive // // Created by 王珂 on 16/10/11. // Copyright © 2016年 xfg. All rights reserved. // #import @class ShopGoodsModel; @protocol AuctionGoodsViewDelegate - (void)closeAuctionGoodsView; @end @interface AuctionGoodsView : BGBaseView @property (nonatomic, weak) id delegate; @property (nonatomic, copy) NSString *hostID;//主播用户ID @property (nonatomic, strong) ShopGoodsModel *model;//商品数据模型 - (void)loadDataWithPage:(int)page; @end