1234567891011121314151617181920212223242526 |
- //
- // ServeUserItem.m
- // FirstLink
- //
- // Created by jack on 15/7/24.
- // Copyright (c) 2015年 FirstLink. All rights reserved.
- // 客服人员信息
- #import "ServeUserItem.h"
- @implementation ServeUserItem
- + (NSDictionary *)mts_mapping
- {
- return @{
- @"id": mts_key(userId),
- @"nickname": mts_key(nickName),
- @"head_pic": mts_key(headerPic)
- };
- }
- + (BOOL)mts_shouldSetUndefinedKeys
- {
- return NO;
- }
- @end
|