No Description

FKBookBrandItem.m 487B

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