123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //
- // YOUPAILCVideoChatModel.m
- // LiveChat
- //
- // Created by 张灿 on 2018/9/17.
- // Copyright © 2018年 caicai. All rights reserved.
- //
- #import "YOUPAILCVideoChatModel.h"
- @implementation YOUPAILCVideoChatModel
- + (NSDictionary *)mj_replacedKeyFromPropertyName
- {
- return @{
- @"youpaiproom_id":@"room_id",
- @"youpaipfrom_uid":@"from_uid",
- @"youpaipfrom_nickname":@"from_nickname",
- @"youpaipfrom_avatar":@"from_avatar",
- @"youpaipfrom_gender":@"from_gender",
- @"youpaipfrom_age":@"from_age",
- @"youpaipto_uid":@"to_uid",
- @"youpaipto_nickname":@"to_nickname",
- @"youpaipto_avatar":@"to_avatar",
- @"youpaipto_gender":@"to_gender",
- @"youpaipto_age":@"to_age",
- @"youpaipsocket_url":@"socket_url",
- @"youpaipis_live":@"is_live",
- @"youpaippreference_type":@"preference_type",
- @"youpaipdiscount_amount":@"discount_amount",
- @"youpaipduration":@"duration",
- @"youpaipskill":@"skill",
- @"youpaipporn_check":@"porn_check",
- @"youpaipporn_check_v2":@"porn_check_v2",
- @"youpaipguard":@"guard",
- @"youpaipfairy":@"fairy",
- @"youpaipchat_open_reduce":@"chat_open_reduce",
- @"youpaipauditState":@"auditState",
- };
- }
- @end
|