1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- //
- // GoodsInformationM.m
- // westkissMob
- //
- // Created by 王猛 on 2022/9/16.
- //
- #import "GoodsInformationM.h"
- @implementation GoodsInformationM
- + (NSDictionary *)mj_replacedKeyFromPropertyName {
- return @{
- @"Id": @"id",
- };
- }
- + (NSDictionary *)mj_objectClassInArray
- {
- return @{
- @"media_gallery_entries": @"MediaGalleryEntriesModel",
- @"options" : @"OptionsModel",
- };
- }
- @end
- @implementation MediaGalleryEntriesModel
- @end
- @implementation OptionsModel
- + (NSDictionary *)mj_objectClassInArray
- {
- return @{
- @"values": @"OptionsValuesM",
- };
- }
- @end
- @implementation OptionsValuesM
- @end
|