猎豆优选

LDTodayGoodModel.m 450B

12345678910111213141516171819202122
  1. //
  2. // LDTodayGoodModel.m
  3. // YouHuiProject
  4. //
  5. // Created by 小花 on 2018/12/13.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import "LDTodayGoodModel.h"
  9. @implementation LDTodayGoodModel
  10. + (NSDictionary *)modelContainerPropertyGenericClass {
  11. return @{@"goodsList" : [LDChildGoodModel class],
  12. @"goods":[LDChildGoodModel class] };
  13. }
  14. + (NSDictionary *)modelCustomPropertyMapper {
  15. return @{@"Id" : @"id"};
  16. }
  17. @end