Geen omschrijving

KXHotList.m 478B

12345678910111213141516171819202122
  1. //
  2. // KXHotList.m
  3. // QBCS
  4. //
  5. // Created by kuxuan on 2017/6/8.
  6. // Copyright © 2017年 kuxuan. All rights reserved.
  7. //
  8. #import "KXHotList.h"
  9. @implementation KXHotList
  10. + (NSDictionary *)modelCustomPropertyMapper {
  11. return @{@"Id" : @"id",@"Description":@"description"};
  12. }
  13. - (void)encodeWithCoder:(NSCoder *)aCoder {
  14. [self yy_modelEncodeWithCoder:aCoder];
  15. }
  16. - (instancetype)initWithCoder:(NSCoder *)aDecoder {
  17. return [self yy_modelInitWithCoder:aDecoder];
  18. }
  19. @end