12345678910111213141516171819202122 |
- //
- // LDTodayGoodModel.m
- // YouHuiProject
- //
- // Created by 小花 on 2018/12/13.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import "LDTodayGoodModel.h"
- @implementation LDTodayGoodModel
- + (NSDictionary *)modelContainerPropertyGenericClass {
- return @{@"goodsList" : [LDChildGoodModel class],
- @"goods":[LDChildGoodModel class] };
- }
- + (NSDictionary *)modelCustomPropertyMapper {
- return @{@"Id" : @"id"};
- }
- @end
|