天天省钱快报

KBCommunityModel.m 430B

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