12345678910111213141516171819202122232425262728 |
- //
- // FKCircleContentDataItem.m
- // FirstLink
- //
- // Created by jack on 16/6/15.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import "FKCircleContentDetailItem.h"
- @implementation FKCircleContentDetailItem
- + (NSDictionary *)mts_mapping{
- return @{
- @"pic_url" : mts_key(picUrl),
- @"size" : mts_key(picSize),
- @"content" : mts_key(contentText),
- @"product" : mts_key(productItem),
- @"supplier" : mts_key(supplyItem),
- };
- }
- + (BOOL)mts_shouldSetUndefinedKeys{
- return NO;
- }
- @end
|