123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //
- // ASMineAddressModel.m
- // Asteria
- //
- // Created by iOS on 2024/5/7.
- //
- #import "ASMineAddressModel.h"
- @implementation KWCountryAddressModel
- + (NSDictionary *)mj_replacedKeyFromPropertyName {
- return @{
- @"country_id": @"id",
- };
- }
- + (NSDictionary *)mj_objectClassInArray{
-
- return @{
-
- @"available_regions" : [KWProvinceAddressModel class]
-
- };
-
-
-
- }
- @end
- @implementation KWProvinceAddressModel
- + (NSDictionary *)mj_replacedKeyFromPropertyName {
- return @{
- @"Id": @"id",
- };
- }
- @end
|