DepositViewController.h 813 B

1234567891011121314151617181920212223242526
  1. //
  2. // DepositViewController.h
  3. // BuguLive
  4. //
  5. // Created by fanwe2014 on 16/8/10.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef NS_ENUM(NSInteger, DepositTableView)
  10. {
  11. DepositZoneSection, //托管金额
  12. DepositOneSection, //联系方式的提示
  13. DepositTwoSection, //联系方式
  14. DepositThreeSection, //约会信息的cell
  15. DepositTablevCount
  16. };
  17. @interface DepositViewController : BGBaseViewController
  18. @property (nonatomic, assign) int type; //0代表虚拟竞拍,1代表实物竞拍
  19. @property (nonatomic, copy) NSString *productId; //产品的id
  20. @property (nonatomic, copy) NSString *bzMoney; //保证金
  21. @end