YOUPAILCCallRecordModel.m 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // YOUPAILCCallRecordModel.m
  3. // LiveChat
  4. //
  5. // Created by 张灿 on 2018/10/13.
  6. // Copyright © 2018年 caicai. All rights reserved.
  7. //
  8. #import "YOUPAILCCallRecordModel.h"
  9. @implementation YOUPAILCCallRecordModel+ (NSDictionary *)mj_replacedKeyFromPropertyName
  10. {
  11. return @{
  12. @"youpaipid":@"id",
  13. @"youpaipuserid":@"userid",
  14. @"youpaipotherType":@"otherType",
  15. @"youpaipusercode":@"usercode",
  16. @"youpaipnickname":@"nickname",
  17. @"youpaipavatar":@"avatar",
  18. @"youpaipcity":@"city",
  19. @"youpaipcreate_time":@"create_time",
  20. @"youpaipgender":@"gender",
  21. @"youpaipage":@"age",
  22. @"youpaipskill":@"skill",
  23. @"youpaiptype":@"type",
  24. @"youpaipcalltype":@"calltype",
  25. @"youpaipstatus":@"status",
  26. @"youpaipstatus_txt":@"status_txt",
  27. @"youpaipcall_time":@"call_time",
  28. @"youpaipcall_amount":@"call_amount",
  29. @"youpaipcall_income":@"call_income",
  30. @"youpaipgrade":@"grade",
  31. @"youpaipvip":@"vip",
  32. @"youpaipvip_icon":@"vip_icon",
  33. };
  34. }
  35. @end