AuctionItemdetailsViewController.h 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. //
  2. // AuctionItemdetailsViewController.h
  3. // BuguLive
  4. //
  5. // Created by fanwe2014 on 16/8/3.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef NS_ENUM(NSInteger, AutionTableView)
  10. {
  11. zeroSection, //竞拍状态的cell
  12. firstSection, //竞拍名称的cell
  13. secondSection, //竞拍信息的cell
  14. thirdSection, //约会信息的cell
  15. fourthSection, //竞拍记录的cell
  16. fifthSection, //竞拍前三名信息的cell
  17. sixthSection, //竞拍详情(实物竞拍和虚拟竞拍)的cell
  18. seventhSection, //交保证金
  19. autionTablevCount
  20. };
  21. @interface AuctionItemdetailsViewController : BGBaseViewController
  22. @property (nonatomic, assign) int type; // 判断是主播还是观众,0是观众,1是主播
  23. @property (nonatomic, copy) NSString *productId; // 商品id
  24. @property (nonatomic, assign) BOOL isFromWebView; // 是否来自webView
  25. @property (nonatomic, assign) int liveType; // 视频类型,对应枚举FW_LIVE_TYPE
  26. @end