1234567891011121314151617181920212223242526272829303132333435363738 |
- //
- // KWMineHomeOrderModel.m
- // westkissMob
- //
- // Created by iOS on 2022/9/15.
- //
- #import "KWMineHomeOrderModel.h"
- @implementation KWMineHomeOrderModel
- + (NSDictionary *)mj_objectClassInArray{
- return @{
-
- @"items" : [KWMineOrderProInfoModel class],
-
- };
- }
- + (NSDictionary *)mj_replacedKeyFromPropertyName {
- return @{
- @"currency_symbol":@"extension_attributes.currency_symbol"
-
- };
- }
- @end
- @implementation KWMineOrderProInfoModel
- + (NSDictionary *)mj_replacedKeyFromPropertyName {
- return @{
- @"image":@"extension_attributes.image",
-
- };
- }
- @end
|