45 lines
978 B
Objective-C
45 lines
978 B
Objective-C
//
|
|
// XuanZekanHuShangJiaXinXi.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 16/8/23.
|
|
// Copyright © 2016年 lianxiang. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface XuanZekanHuShangJiaXinXi : NSObject
|
|
// 和 CertificationShopModel 不同
|
|
@property (nonatomic,copy) NSString *userId;
|
|
|
|
@property (nonatomic,copy) NSString *userName;
|
|
|
|
@property (nonatomic,copy) NSString *shopsName;
|
|
|
|
@property (nonatomic,copy) NSString *shopsPhone;
|
|
|
|
@property (nonatomic,copy) NSString *shopsProvince;
|
|
|
|
@property (nonatomic,copy) NSString *shopsCity;
|
|
|
|
@property (nonatomic,copy) NSString *shopsArea;
|
|
|
|
@property (nonatomic,copy) NSString *shopsAddress;
|
|
|
|
@property(nonatomic,copy)NSString *picture1;
|
|
|
|
@property(nonatomic,copy)NSString *picture2;
|
|
|
|
@property(nonatomic,copy)NSString *picture3;
|
|
|
|
@property(nonatomic,copy)NSString *picture4;
|
|
|
|
@property(nonatomic,copy)NSString *reason;
|
|
|
|
@property(nonatomic,copy)NSString *shopsId;
|
|
|
|
@property(nonatomic,copy)NSString *status;
|
|
|
|
|
|
@end
|