暫無描述

FKWantBuyProItem.m 605B

1234567891011121314151617181920212223242526272829
  1. //
  2. // FKWantBuyProItem.m
  3. // FirstLink
  4. //
  5. // Created by 施昌鹏 on 16/8/18.
  6. // Copyright © 2016年 FirstLink. All rights reserved.
  7. //
  8. #import "FKWantBuyProItem.h"
  9. @implementation FKWantBuyProItem
  10. +(NSDictionary *)mts_mapping {
  11. return @{
  12. @"supplier_pic" : mts_key(brand),
  13. @"first_pic" : mts_key(productPic),
  14. @"price" : mts_key(price),
  15. @"title" : mts_key(proTitle),
  16. @"status" : mts_key(status),
  17. @"id" : mts_key(proId)
  18. };
  19. }
  20. + (BOOL)mts_shouldSetUndefinedKeys{
  21. return NO;
  22. }
  23. @end