单军华
2018-07-19 83b9d5c682b21d88133f24da0f94dd56bd79e687
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
//
//  AddressModel.h
//  MOFSPickerManager
//
//  Created by luoyuan on 16/8/31.
//  Copyright © 2016年 luoyuan. All rights reserved.
//
 
#import <Foundation/Foundation.h>
 
@class CityModel,DistrictModel,GDataXMLElement;
@interface AddressModel : NSObject
 
@property (nonatomic, strong) NSString *name;
@property (nonatomic, strong) NSString *zipcode;
@property (nonatomic, strong) NSString *index;
@property (nonatomic, strong) NSMutableArray<CityModel *> *list;
 
- (instancetype)initWithDictionary:(NSDictionary *)dictionary;
 
@end
 
@interface CityModel : NSObject
 
@property (nonatomic, strong) NSString *name;
@property (nonatomic, strong) NSString *zipcode;
@property (nonatomic, strong) NSString *index;
@property (nonatomic, strong) NSMutableArray<DistrictModel *> *list;
 
- (instancetype)initWithDictionary:(NSDictionary *)dictionary;
 
@end
 
@interface DistrictModel : NSObject
 
@property (nonatomic, strong) NSString *name;
@property (nonatomic, strong) NSString *zipcode;
@property (nonatomic, strong) NSString *index;
 
- (instancetype)initWithDictionary:(NSDictionary *)dictionary;
 
 
@end