Nenhuma Descrição

FKBookRecProItem.m 594B

1234567891011121314151617181920212223242526272829
  1. //
  2. // FKBookRecProItem.m
  3. // FirstLink
  4. //
  5. // Created by jack on 16/4/29.
  6. // Copyright © 2016年 FirstLink. All rights reserved.
  7. //
  8. #import "FKBookRecProItem.h"
  9. @implementation FKBookRecProItem
  10. + (NSDictionary *)mts_mapping {
  11. return @{
  12. @"id" : mts_key(itemID),
  13. @"index_pic" : mts_key(picUrl),
  14. @"name" : mts_key(name),
  15. @"title" : mts_key(title),
  16. @"current_price" : mts_key(currentPrice),
  17. @"before_price" : mts_key(originPrice),
  18. };
  19. }
  20. + (BOOL)mts_shouldSetUndefinedKeys {
  21. return NO;
  22. }
  23. @end