123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //
- // ASOrderDetailsModel.m
- // Asteria
- //
- // Created by xingyu on 2024/5/15.
- //
- #import "ASOrderDetailsModel.h"
- @implementation ASOrderDetailsModel
- + (NSDictionary *)mj_objectClassInArray{
- return @{
-
- @"items" : [ASOrderDetailsItemModel class],
-
- };
- }
- + (NSDictionary *)mj_replacedKeyFromPropertyName {
- return @{
- @"currency_symbol":@"extension_attributes.currency_symbol"
-
- };
- }
- @end
- @implementation ASOrderDetailsItemModel
- + (NSDictionary *)mj_replacedKeyFromPropertyName {
- return @{
- @"image":@"extension_attributes.image",
- @"sku":@"extension_attributes.sku"
- };
- }
- @end
|