Bez popisu

FKHotSaleModel.m 680B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // FKHotSaleModel.m
  3. // FirstLink
  4. //
  5. // Created by ascii on 2017/6/10.
  6. // Copyright © 2017年 FirstLink. All rights reserved.
  7. //
  8. #import "FKHotSaleModel.h"
  9. @implementation FKHotSaleModel
  10. + (NSDictionary*)mts_mapping {
  11. return @{@"backstage_category_id": mts_key(cID),
  12. @"product_id": mts_key(pID),
  13. @"first_pic": mts_key(picURL),
  14. @"title": mts_key(title),
  15. @"price": mts_key(price),
  16. @"original_price": mts_key(orgPrice),
  17. @"supplier_name": mts_key(sName),
  18. @"supplier_pic": mts_key(sPicURL),
  19. };
  20. }
  21. + (BOOL)mts_shouldSetUndefinedKeys {
  22. return NO;
  23. }
  24. @end