12345678910111213141516171819202122232425262728293031 |
- //
- // FKHotSaleModel.m
- // FirstLink
- //
- // Created by ascii on 2017/6/10.
- // Copyright © 2017年 FirstLink. All rights reserved.
- //
- #import "FKHotSaleModel.h"
- @implementation FKHotSaleModel
- + (NSDictionary*)mts_mapping {
- return @{@"backstage_category_id": mts_key(cID),
- @"product_id": mts_key(pID),
- @"first_pic": mts_key(picURL),
- @"title": mts_key(title),
- @"price": mts_key(price),
- @"original_price": mts_key(orgPrice),
- @"supplier_name": mts_key(sName),
- @"supplier_pic": mts_key(sPicURL),
- };
- }
- + (BOOL)mts_shouldSetUndefinedKeys {
- return NO;
- }
- @end
|