12345678910111213141516171819202122232425262728 |
- //
- // ZBShopModel.h
- // ZBProject
- //
- // Created by 学丽 on 2019/4/1.
- // Copyright © 2019 ZB. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface ZBShopModel : NSObject
- @property (nonatomic, strong) NSString *shop_url;
- @property (nonatomic, strong) NSString *title;
- @property (nonatomic, strong) NSString *nick;
- @property (nonatomic, strong) NSString *pic_path;
- @property (nonatomic, strong) NSString *item_score;
- @property (nonatomic, strong) NSString *item_score_pre;
- @property (nonatomic, strong) NSString *service_score;
- @property (nonatomic, strong) NSString *service_score_pre;
- @property (nonatomic, strong) NSString *delivery_score;
- @property (nonatomic, strong) NSString *delivery_score_pre;
- @end
- NS_ASSUME_NONNULL_END
|