天天省钱快报

KBCategoryModel.m 435B

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