Bez popisu

FKHomeCountModel.m 604B

1234567891011121314151617181920212223242526
  1. //
  2. // FKHomeCountModel.m
  3. // FirstLink
  4. //
  5. // Created by ascii on 16/8/18.
  6. // Copyright © 2016年 FirstLink. All rights reserved.
  7. //
  8. #import "FKHomeCountModel.h"
  9. @implementation FKHomeCountModel
  10. + (NSDictionary*)mts_mapping {
  11. return @{@"price_remind_count" : mts_key(priceRemindCount),
  12. @"favorite_product_count" : mts_key(collectProductCount),
  13. @"subscribe_brand_count" : mts_key(subscribeBrandCount),
  14. @"total_score" : mts_key(totalScore),
  15. };
  16. }
  17. + (BOOL)mts_shouldSetUndefinedKeys {
  18. return NO;
  19. }
  20. @end