dkahgld

ZBShopModel.h 778B

12345678910111213141516171819202122232425262728
  1. //
  2. // ZBShopModel.h
  3. // ZBProject
  4. //
  5. // Created by 学丽 on 2019/4/1.
  6. // Copyright © 2019 ZB. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface ZBShopModel : NSObject
  11. @property (nonatomic, strong) NSString *shop_url;
  12. @property (nonatomic, strong) NSString *title;
  13. @property (nonatomic, strong) NSString *nick;
  14. @property (nonatomic, strong) NSString *pic_path;
  15. @property (nonatomic, strong) NSString *item_score;
  16. @property (nonatomic, strong) NSString *item_score_pre;
  17. @property (nonatomic, strong) NSString *service_score;
  18. @property (nonatomic, strong) NSString *service_score_pre;
  19. @property (nonatomic, strong) NSString *delivery_score;
  20. @property (nonatomic, strong) NSString *delivery_score_pre;
  21. @end
  22. NS_ASSUME_NONNULL_END