YOUPAILZChatRoomModel.m 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. //
  2. // YOUPAILZChatRoomModel.m
  3. // VQU
  4. //
  5. // Created by CY on 2021/10/25.
  6. // Copyright © 2021 MS. All rights reserved.
  7. //
  8. #import "YOUPAILZChatRoomModel.h"
  9. @implementation YOUPAILZChatRoomModel
  10. + (NSDictionary*)mj_objectClassInArray{
  11. return @{
  12. @"youpaiplive_top_three" : [LZLiveTopThreeModel class],
  13. @"youpaipnormalSeats" : [YOUPAILZChatRoomSeatModel class],
  14. @"youpaiptalk_played_status" : [YOUPAILZChatRoomTalkPlayedStatusModel class]
  15. };
  16. }
  17. - (LZChatRoomType)youpaipchatroomType{
  18. //麦序 host主持麦 free 自由麦
  19. if ([self.youpaiptalk_type isEqual:@"free"]) {
  20. return LZChatRoomTypeWithFree;
  21. }else{
  22. return LZChatRoomTypeWithHost;
  23. }
  24. }
  25. - (LZChatRoomPlayType)youpaipplayType{
  26. // 房间当前玩法 玩法:normal=正常,cardiac=心动值,blind_date=相亲
  27. if([self.youpaiptalk_played isEqual:@"cardiac"]) {
  28. return LZChatRoomPlayTypeWithCardiac;
  29. }else if([self.youpaiptalk_played isEqual:@"blind_date"]){
  30. return LZChatRoomPlayTypeWithBlindDate;
  31. }else{
  32. return LZChatRoomPlayTypeWithNormal;
  33. }
  34. }
  35. + (NSDictionary *)mj_replacedKeyFromPropertyName
  36. {
  37. return @{
  38. @"youpaiptalk_id":@"talk_id",
  39. @"youpaiptalk_notice":@"talk_notice",
  40. @"youpaiptalk_type":@"talk_type",
  41. @"youpaiptalk_pwd":@"talk_pwd",
  42. @"youpaiproom_id":@"room_id",
  43. @"youpaiproom_number":@"room_number",
  44. @"youpaiproom_score":@"room_score",
  45. @"youpaiproom_title":@"room_title",
  46. @"youpaipcoverimg":@"coverimg",
  47. @"youpaiphostSeat":@"seats.host",
  48. @"youpaipnormalSeats":@"seats.normal",
  49. @"youpaipuserInfo":@"userInfo",
  50. @"youpaiprank_top_three":@"rank_top_three",
  51. @"youpaiplive_top_three":@"live_top_three",
  52. @"youpaipis_comein_room_hide":@"is_comein_room_hide",
  53. @"youpaipnotice_text":@"notice_text",
  54. @"youpaipsay_count":@"say_count",
  55. @"youpaiptalk_mute":@"talk_mute",
  56. @"youpaipis_follow":@"is_follow",
  57. @"youpaipis_fly":@"is_fly",
  58. @"youpaipu_data":@"u_data",
  59. @"youpaipis_fly_car":@"is_fly_car",
  60. @"youpaipcar_data":@"car_data",
  61. @"youpaipis_fly_noble":@"is_fly_noble",
  62. @"youpaipb_box_data":@"b_box_data",
  63. @"youpaipchatroomType":@"chatroomType",
  64. @"youpaiptalk_played":@"talk_played",
  65. @"youpaiptalk_played_status":@"talk_played_status",
  66. @"youpaipblindDateChange":@"h5url.blindDateChange",
  67. @"youpaippalyIntroduce":@"h5url.palyIntroduce",
  68. @"youpaipbg_img":@"bg_img",
  69. @"youpaipmanagers":@"managers",
  70. };
  71. }
  72. @end