YOUPAILCOnlineModel.m 759 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // YOUPAILCOnlineModel.m
  3. // LiveChat
  4. //
  5. // Created by 张灿 on 2018/9/11.
  6. // Copyright © 2018年 caicai. All rights reserved.
  7. //
  8. #import "YOUPAILCOnlineModel.h"
  9. @implementation YOUPAILCOnlineModel
  10. + (NSDictionary *)mj_replacedKeyFromPropertyName
  11. {
  12. return @{
  13. @"youpaipuserid":@"userid",
  14. @"youpaipusercode":@"usercode",
  15. @"youpaipnickname":@"nickname",
  16. @"youpaipavatar":@"avatar",
  17. @"youpaipgender":@"gender",
  18. @"youpaipage":@"age",
  19. @"youpaipcity":@"city",
  20. @"youpaipdateline":@"dateline",
  21. @"youpaipvip":@"vip",
  22. @"youpaipvip_icon":@"vip_icon",
  23. @"youpaiplabel_name":@"label_name",
  24. @"youpaipsign":@"sign",
  25. @"youpaipgrade":@"grade",
  26. };
  27. }
  28. @end