暫無描述

ServeUserItem.m 467B

1234567891011121314151617181920212223242526
  1. //
  2. // ServeUserItem.m
  3. // FirstLink
  4. //
  5. // Created by jack on 15/7/24.
  6. // Copyright (c) 2015年 FirstLink. All rights reserved.
  7. // 客服人员信息
  8. #import "ServeUserItem.h"
  9. @implementation ServeUserItem
  10. + (NSDictionary *)mts_mapping
  11. {
  12. return @{
  13. @"id": mts_key(userId),
  14. @"nickname": mts_key(nickName),
  15. @"head_pic": mts_key(headerPic)
  16. };
  17. }
  18. + (BOOL)mts_shouldSetUndefinedKeys
  19. {
  20. return NO;
  21. }
  22. @end