123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //
- // FKProRecommendItem.m
- // FirstLink
- //
- // Created by jack on 16/8/17.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import "FKProRecommendItem.h"
- @implementation FKProRecommendItem
- + (NSDictionary *)mts_mapping{
- return @{
- @"id": mts_key(itemId),
- @"name": mts_key(name),
- @"title": mts_key(title),
- @"first_pic": mts_key(picUrl),
- @"price": mts_key(price),
- @"refer_price": mts_key(referPrice),
- @"supplier_id": mts_key(supplierId),
- @"original_price": mts_key(orginPrice),
- @"salable": mts_key(salable),
- @"operate_status": mts_key(operateStatus),
- @"status": mts_key(status),
- };
- }
- + (BOOL)mts_shouldSetUndefinedKeys{
- return NO;
- }
- //- (BOOL)productOnLine{
- // if ([self.status isKindOfClass:[NSString class]] && self.status.intValue == 1) {
- // return YES;
- // }
- // return NO;
- //}
- @end
|