123456789101112131415161718192021222324252627282930313233 |
- //
- // CollectionCommodity.m
- // FirstLink
- //
- // Created by unicode on 14-10-13.
- // Copyright (c) 2014年 FirstLink. All rights reserved.
- //
- #import "CollectItem.h"
- @implementation CollectItem
- + (NSDictionary*)mts_mapping {
- return @{@"id": mts_key(itemID),
- @"user_id": mts_key(userID),
- @"first_pic": mts_key(photoURL),
- @"name": mts_key(name),
- @"title": mts_key(title),
- @"type": mts_key(type),
- @"status": mts_key(status),
- @"operate_status": mts_key(operatnStatus),
- @"price": mts_key(price),
- @"refer_price": mts_key(referPrice),
- @"supplier_name": mts_key(source),
- };
- }
- + (BOOL)mts_shouldSetUndefinedKeys {
- return NO;
- }
- @end
|