1234567891011121314151617181920212223242526272829 |
- //
- // FKWantBuyProItem.m
- // FirstLink
- //
- // Created by 施昌鹏 on 16/8/18.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import "FKWantBuyProItem.h"
- @implementation FKWantBuyProItem
- +(NSDictionary *)mts_mapping {
- return @{
- @"supplier_pic" : mts_key(brand),
- @"first_pic" : mts_key(productPic),
- @"price" : mts_key(price),
- @"title" : mts_key(proTitle),
- @"status" : mts_key(status),
- @"id" : mts_key(proId)
- };
- }
- + (BOOL)mts_shouldSetUndefinedKeys{
- return NO;
- }
- @end
|