From a8297afeff989f07a0d54dadfec7b34799a9c5dd Mon Sep 17 00:00:00 2001 From: 单军华 Date: Wed, 11 Jul 2018 11:40:39 +0800 Subject: [PATCH] 打包配置 --- screendisplay/Pods/MOFSPickerManager/MOFSPickerManagerDemo/MOFSPickerManager/AddressModel.h | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 43 insertions(+), 0 deletions(-) diff --git a/screendisplay/Pods/MOFSPickerManager/MOFSPickerManagerDemo/MOFSPickerManager/AddressModel.h b/screendisplay/Pods/MOFSPickerManager/MOFSPickerManagerDemo/MOFSPickerManager/AddressModel.h new file mode 100755 index 0000000..373c2cc --- /dev/null +++ b/screendisplay/Pods/MOFSPickerManager/MOFSPickerManagerDemo/MOFSPickerManager/AddressModel.h @@ -0,0 +1,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 -- Gitblit v1.8.0