AuctionGoodsView.h 574 B

1234567891011121314151617181920212223242526
  1. //
  2. // AuctionGoodsView.h
  3. // BuguLive
  4. //
  5. // Created by 王珂 on 16/10/11.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class ShopGoodsModel;
  10. @protocol AuctionGoodsViewDelegate<NSObject>
  11. - (void)closeAuctionGoodsView;
  12. @end
  13. @interface AuctionGoodsView : BGBaseView
  14. @property (nonatomic, weak) id<AuctionGoodsViewDelegate> delegate;
  15. @property (nonatomic, copy) NSString *hostID;//主播用户ID
  16. @property (nonatomic, strong) ShopGoodsModel *model;//商品数据模型
  17. - (void)loadDataWithPage:(int)page;
  18. @end