YOUPAILCVideoChatModel.m 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //
  2. // YOUPAILCVideoChatModel.m
  3. // LiveChat
  4. //
  5. // Created by 张灿 on 2018/9/17.
  6. // Copyright © 2018年 caicai. All rights reserved.
  7. //
  8. #import "YOUPAILCVideoChatModel.h"
  9. @implementation YOUPAILCVideoChatModel
  10. + (NSDictionary *)mj_replacedKeyFromPropertyName
  11. {
  12. return @{
  13. @"youpaiproom_id":@"room_id",
  14. @"youpaipfrom_uid":@"from_uid",
  15. @"youpaipfrom_nickname":@"from_nickname",
  16. @"youpaipfrom_avatar":@"from_avatar",
  17. @"youpaipfrom_gender":@"from_gender",
  18. @"youpaipfrom_age":@"from_age",
  19. @"youpaipto_uid":@"to_uid",
  20. @"youpaipto_nickname":@"to_nickname",
  21. @"youpaipto_avatar":@"to_avatar",
  22. @"youpaipto_gender":@"to_gender",
  23. @"youpaipto_age":@"to_age",
  24. @"youpaipsocket_url":@"socket_url",
  25. @"youpaipis_live":@"is_live",
  26. @"youpaippreference_type":@"preference_type",
  27. @"youpaipdiscount_amount":@"discount_amount",
  28. @"youpaipduration":@"duration",
  29. @"youpaipskill":@"skill",
  30. @"youpaipporn_check":@"porn_check",
  31. @"youpaipporn_check_v2":@"porn_check_v2",
  32. @"youpaipguard":@"guard",
  33. @"youpaipfairy":@"fairy",
  34. @"youpaipchat_open_reduce":@"chat_open_reduce",
  35. @"youpaipauditState":@"auditState",
  36. };
  37. }
  38. @end