1234567891011121314151617181920212223242526 |
- //
- // FKHomeCountModel.m
- // FirstLink
- //
- // Created by ascii on 16/8/18.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import "FKHomeCountModel.h"
- @implementation FKHomeCountModel
- + (NSDictionary*)mts_mapping {
- return @{@"price_remind_count" : mts_key(priceRemindCount),
- @"favorite_product_count" : mts_key(collectProductCount),
- @"subscribe_brand_count" : mts_key(subscribeBrandCount),
- @"total_score" : mts_key(totalScore),
- };
- }
- + (BOOL)mts_shouldSetUndefinedKeys {
- return NO;
- }
- @end
|