No Description

FKRecoNewsItem.m 537B

123456789101112131415161718192021222324252627
  1. //
  2. // FKRecoNewsItem.m
  3. // FirstLink
  4. //
  5. // Created by ascii on 2017/6/14.
  6. // Copyright © 2017年 FirstLink. All rights reserved.
  7. //
  8. #import "FKRecoNewsItem.h"
  9. @implementation FKRecoNewsItem
  10. + (NSDictionary*)mts_mapping {
  11. return @{@"pic_url": mts_key(headImgURL),
  12. @"title": mts_key(title),
  13. @"source": mts_key(source),
  14. @"update_time": mts_key(updateTime),
  15. @"target_url": mts_key(targetURL),
  16. };
  17. }
  18. + (BOOL)mts_shouldSetUndefinedKeys {
  19. return NO;
  20. }
  21. @end