Initial commit
This commit is contained in:
Executable
+28
@@ -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
|
||||
Reference in New Issue
Block a user