一折买app------返利---------返利宝

YZMACategoryModel.m 445B

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