省钱达人

DRTodayMudleModel.m 400B

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