// // ASMineAddressModel.m // Asteria // // Created by iOS on 2024/5/7. // #import "ASMineAddressModel.h" @implementation ASMineAddressModel + (NSDictionary *)mj_replacedKeyFromPropertyName { return @{ @"Id": @"id", }; } + (ASMineAddressModel *)defualtData { ASMineAddressModel *m = [ASMineAddressModel new]; m.title = @""; m.firstname = @""; m.lastname = @""; m.street = @""; m.postcode = @""; m.city = @""; m.region = @""; m.telephone = @""; m.country = @"Unites States"; m.country_id = @"US"; return m; } @end @implementation KWCountryAddressModel @end @implementation KWProvinceAddressModel + (NSDictionary *)mj_replacedKeyFromPropertyName { return @{ @"Id": @"id", }; } @end