Açıklama Yok

PindanSpecItem.m 788B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // PindanSpecItem.m
  3. // FirstLink
  4. //
  5. // Created by jack on 15/7/2.
  6. // Copyright (c) 2015年 FirstLink. All rights reserved.
  7. // 规格
  8. #import "PindanSpecItem.h"
  9. @implementation PindanSpecItem
  10. + (NSDictionary *)mts_mapping
  11. {
  12. return @{@"name" : mts_key(name),
  13. @"price" : mts_key(price),
  14. @"vip_price" : mts_key(vipPrice),
  15. @"post_id" : mts_key(postID),
  16. @"user_id" : mts_key(userID),
  17. @"id" : mts_key(specID),
  18. @"create_time" : mts_key(createTime),
  19. @"update_time" : mts_key(updateTime),
  20. @"status" : mts_key(status),
  21. @"stock" : mts_key(stock),
  22. @"pic_url" : mts_key(imgUrl),
  23. };
  24. }
  25. + (BOOL)mts_shouldSetUndefinedKeys
  26. {
  27. return NO;
  28. }
  29. @end