29 lines
965 B
Objective-C
29 lines
965 B
Objective-C
//
|
|
// IfishShopInfo.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 17/1/17.
|
|
// Copyright © 2017年 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface IfishShopInfo : NSObject
|
|
@property ( nonatomic,strong) NSString *shopsId;
|
|
@property ( nonatomic,strong) NSString *userId;
|
|
@property ( nonatomic,strong) NSString *userImg;
|
|
@property ( nonatomic,strong) NSString *userName;
|
|
@property ( nonatomic,strong) NSString *shopsName;
|
|
@property ( nonatomic,strong) NSString *shopsPhone;
|
|
@property ( nonatomic,strong) NSString *shopsCity;
|
|
@property ( nonatomic,strong) NSString *shopsArea;
|
|
@property ( nonatomic,strong) NSString *shopsProvince;
|
|
@property ( nonatomic,strong) NSString *shopsAddress;
|
|
@property ( nonatomic,strong) NSString *picture4;
|
|
@property ( nonatomic,strong) NSString *remark;
|
|
@property ( nonatomic,strong) NSString *distance;
|
|
@property ( nonatomic,strong) NSString *weixinCode;
|
|
@property ( nonatomic,strong) NSString *shopLink;
|
|
|
|
@end
|