You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
561 B

2 years ago
//
// CityModelData.m
// ProvinceAndCityAndTown
//
// Created by 冷求慧 on 16/12/27.
// Copyright © 2016年 冷求慧. All rights reserved.
//
#import "CityModelData.h"
@implementation CityModelData
+ (NSDictionary *)objectClassInArray{
return @{@"province" : [Province class]};
}
@end
@implementation Province
+ (NSDictionary *)objectClassInArray{
return @{@"city" : [City class]};
}
@end
@implementation City
+ (NSDictionary *)objectClassInArray{
return @{@"district" : [District class]};
}
@end
@implementation District
@end