Initial commit

This commit is contained in:
ifish
2017-08-15 16:59:01 +08:00
commit bdc83e07ef
5766 changed files with 423223 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
//
// ProvinceModel.h
// 地址选择器
//
// Created by zhuming on 16/2/15.
// Copyright © 2016年 zhuming. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface ProvinceModel : NSObject
/**
* GRADE
*/
@property (nonatomic,copy)NSString *GRADE;
/**
* 省份ID
*/
@property (nonatomic,copy)NSString *ID;
/**
* 省份名
*/
@property (nonatomic,copy)NSString *NAME;
/**
* 省份的上一级ID
*/
@property (nonatomic,copy)NSString *PARENT_AREA_ID;
@end