1234567891011121314151617181920212223242526272829303132 |
- //
- // PindanSpecItem.m
- // FirstLink
- //
- // Created by jack on 15/7/2.
- // Copyright (c) 2015年 FirstLink. All rights reserved.
- // 规格
- #import "PindanSpecItem.h"
- @implementation PindanSpecItem
- + (NSDictionary *)mts_mapping
- {
- return @{@"name" : mts_key(name),
- @"price" : mts_key(price),
- @"vip_price" : mts_key(vipPrice),
- @"post_id" : mts_key(postID),
- @"user_id" : mts_key(userID),
- @"id" : mts_key(specID),
- @"create_time" : mts_key(createTime),
- @"update_time" : mts_key(updateTime),
- @"status" : mts_key(status),
- @"stock" : mts_key(stock),
- @"pic_url" : mts_key(imgUrl),
- };
- }
- + (BOOL)mts_shouldSetUndefinedKeys
- {
- return NO;
- }
- @end
|