AddressViewController.h 1.0 KB

1234567891011121314151617181920212223242526
  1. //
  2. // AddressViewController.h
  3. // BuguLive
  4. //
  5. // Created by fanwe2014 on 16/10/19.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface AddressViewController : BGBaseViewController
  10. @property (nonatomic, assign) int type; //0代表新增地址,1代表修改地址
  11. @property (nonatomic, copy) NSString *user_id; //联系人的user_id
  12. @property (nonatomic, copy) NSString *address_id; //地址的id
  13. @property (nonatomic, copy) NSString *personName; //联系人
  14. @property (nonatomic, copy) NSString *personPhone; //联系方式
  15. @property (nonatomic, copy) NSString *area; //省市区
  16. @property (nonatomic, copy) NSString *detailArea; //详细地址
  17. @property (nonatomic, copy) NSString *provinceStr; //省
  18. @property (nonatomic, copy) NSString *cityStr; //市
  19. @property (nonatomic, copy) NSString *areaStr; //区
  20. @property (nonatomic, assign) BOOL *isDefault; //是否默认
  21. @end