12345678910111213141516171819202122232425262728 |
- //
- // FKInviteUserModel.m
- // FirstLink
- //
- // Created by jack on 16/5/30.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import "FKInviteUserItem.h"
- @implementation FKInviteUserItem
- + (NSDictionary*)mts_mapping {
- return @{
- @"id": mts_key(itemID),
- @"nickname": mts_key(nickName),
- @"mobile_phone": mts_key(mobilePhone),
- @"head_pic": mts_key(headPic),
- @"invite_reward": mts_key(inviteReward),
- };
- }
- + (BOOL)mts_shouldSetUndefinedKeys {
- return NO;
- }
- @end
|