ReleaseViewController.h 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // ReleaseViewController.h
  3. // 拍卖
  4. //
  5. // Created by GuoMs on 16/8/5.
  6. // Copyright © 2016年 zcd. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "ShopListModel.h"
  10. #import "ShopGoodsModel.h"
  11. @class ReleaseViewController;
  12. @class ShopListModel;
  13. @class ShopGoodsModel;
  14. @protocol ReleaseViewControllerDelegate <NSObject>
  15. - (void)onReleaseVCAuctionId:(NSInteger )auctionId;
  16. @end
  17. @interface ReleaseViewController : BGBaseViewController
  18. @property (nonatomic, retain)ShopListModel *model; //商品实体
  19. @property (nonatomic, weak) id<ReleaseViewControllerDelegate> delegate;
  20. @property (nonatomic, copy) NSString *host_id;
  21. @property (retain, nonatomic) NSString *keyWordStr; //搜索关键字
  22. @property (nonatomic, copy) NSString *shopType;//购物类型:VirtualShopping(虚拟购物) EntityShopping(实体购物) EditShopping(编辑购物商品) EntityAuctionShopping(实物竞拍)
  23. @property (nonatomic, strong) ShopGoodsModel * auctionGoodsModel; //实物竞拍商品实体
  24. @property (nonatomic, assign) BOOL isOTOShop;
  25. @end