Bez popisu

FKWeixinItem.m 588B

123456789101112131415161718192021222324252627282930
  1. //
  2. // FKWeixinItem.m
  3. // FirstLink
  4. //
  5. // Created by ascii on 15/10/28.
  6. // Copyright © 2015年 FirstLink. All rights reserved.
  7. //
  8. #import "FKWeixinItem.h"
  9. @implementation FKWeixinItem
  10. + (NSDictionary*)mts_mapping {
  11. return @{@"channels": mts_key(channel),
  12. @"title": mts_key(title),
  13. @"desc": mts_key(desc),
  14. @"link": mts_key(link),
  15. @"imgUrl": mts_key(photoURL),
  16. @"type": mts_key(type),
  17. @"dataUrl": mts_key(dataURL),
  18. };
  19. }
  20. + (BOOL)mts_shouldSetUndefinedKeys
  21. {
  22. return NO;
  23. }
  24. @end