123456789101112131415161718192021222324252627 |
- //
- // FKRecoNewsItem.m
- // FirstLink
- //
- // Created by ascii on 2017/6/14.
- // Copyright © 2017年 FirstLink. All rights reserved.
- //
- #import "FKRecoNewsItem.h"
- @implementation FKRecoNewsItem
- + (NSDictionary*)mts_mapping {
- return @{@"pic_url": mts_key(headImgURL),
- @"title": mts_key(title),
- @"source": mts_key(source),
- @"update_time": mts_key(updateTime),
- @"target_url": mts_key(targetURL),
- };
- }
- + (BOOL)mts_shouldSetUndefinedKeys {
- return NO;
- }
- @end
|