123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- //
- // YOUPAILZChatRoomModel.m
- // VQU
- //
- // Created by CY on 2021/10/25.
- // Copyright © 2021 MS. All rights reserved.
- //
- #import "YOUPAILZChatRoomModel.h"
- @implementation YOUPAILZChatRoomModel
- + (NSDictionary*)mj_objectClassInArray{
- return @{
- @"youpaiplive_top_three" : [LZLiveTopThreeModel class],
- @"youpaipnormalSeats" : [YOUPAILZChatRoomSeatModel class],
- @"youpaiptalk_played_status" : [YOUPAILZChatRoomTalkPlayedStatusModel class]
- };
- }
- - (LZChatRoomType)youpaipchatroomType{
- //麦序 host主持麦 free 自由麦
- if ([self.youpaiptalk_type isEqual:@"free"]) {
- return LZChatRoomTypeWithFree;
- }else{
- return LZChatRoomTypeWithHost;
- }
- }
- - (LZChatRoomPlayType)youpaipplayType{
- // 房间当前玩法 玩法:normal=正常,cardiac=心动值,blind_date=相亲
- if([self.youpaiptalk_played isEqual:@"cardiac"]) {
- return LZChatRoomPlayTypeWithCardiac;
- }else if([self.youpaiptalk_played isEqual:@"blind_date"]){
- return LZChatRoomPlayTypeWithBlindDate;
- }else{
- return LZChatRoomPlayTypeWithNormal;
- }
- }
- + (NSDictionary *)mj_replacedKeyFromPropertyName
- {
- return @{
- @"youpaiptalk_id":@"talk_id",
- @"youpaiptalk_notice":@"talk_notice",
- @"youpaiptalk_type":@"talk_type",
- @"youpaiptalk_pwd":@"talk_pwd",
- @"youpaiproom_id":@"room_id",
- @"youpaiproom_number":@"room_number",
- @"youpaiproom_score":@"room_score",
- @"youpaiproom_title":@"room_title",
- @"youpaipcoverimg":@"coverimg",
- @"youpaiphostSeat":@"seats.host",
- @"youpaipnormalSeats":@"seats.normal",
- @"youpaipuserInfo":@"userInfo",
- @"youpaiprank_top_three":@"rank_top_three",
- @"youpaiplive_top_three":@"live_top_three",
- @"youpaipis_comein_room_hide":@"is_comein_room_hide",
- @"youpaipnotice_text":@"notice_text",
- @"youpaipsay_count":@"say_count",
- @"youpaiptalk_mute":@"talk_mute",
- @"youpaipis_follow":@"is_follow",
- @"youpaipis_fly":@"is_fly",
- @"youpaipu_data":@"u_data",
- @"youpaipis_fly_car":@"is_fly_car",
- @"youpaipcar_data":@"car_data",
- @"youpaipis_fly_noble":@"is_fly_noble",
- @"youpaipb_box_data":@"b_box_data",
- @"youpaipchatroomType":@"chatroomType",
- @"youpaiptalk_played":@"talk_played",
- @"youpaiptalk_played_status":@"talk_played_status",
- @"youpaipblindDateChange":@"h5url.blindDateChange",
- @"youpaippalyIntroduce":@"h5url.palyIntroduce",
- @"youpaipbg_img":@"bg_img",
- @"youpaipmanagers":@"managers",
- };
- }
- @end
|