新UI马甲包

HCCommunityModel.m 411B

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