123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- //
- // YOUPAILCHomeListModel.m
- // LiveChat
- //
- // Created by 张灿 on 2018/9/2.
- // Copyright © 2018年 caicai. All rights reserved.
- //
- #import "YOUPAILCHomeListModel.h"
- @implementation YOUPAILCHomeListModel
- //注意!!!!
- + (NSDictionary*)mj_objectClassInArray{
- return @{
- @"youpaipgame_skill" : [YOUPAILZGameAccompanyModel class],
- @"youpaiplaber" :[YOUPAILZlaber_listModel class],
- @"youpaipis_rank":[YOUPAILZHomeRankModel class]
- };
- }
- -(void)setValue:(id)value forUndefinedKey:(NSString *)key{
-
-
- }
- + (NSDictionary *)mj_replacedKeyFromPropertyName
- {
- return @{
- @"youpaipisSelect":@"isSelect",
- // @"youpaipuserid":@"userid",
- @"youpaipuserid":@"id",
- @"youpaipnickname":@"nickname",
- @"youpaipusercode":@"usercode",
- @"youpaipcover":@"cover",
-
- @"youpaipcity":@"city",
- @"youpaipgive_score":@"give_score",
- @"youpaipgender":@"gender",
- @"youpaipage":@"age",
- @"youpaipprice":@"price",
-
- @"youpaipvip_icon":@"vip_icon",
- @"youpaipgame_skill":@"game_skill",
- @"youpaipstatus":@"onlineNew.OnlineStatus",
- @"youpaipstatusMsg":@"onlineNew.statusMsgNew",
-
- @"youpaipsign":@"sign",
- @"youpaipAddnewStatus":@"onlineNew.newStatus",
- @"youpaipAddnewMsg":@"onlineNew.newMsg",
- @"youpaipAddnewColor":@"onlineNew.newColor",
- @"youpaipgrade":@"grade",
-
- @"youpaipbadge":@"badge",
- @"youpaipdiscount":@"discount",
- @"youpaipis_follow":@"is_follow",
- @"youpaipis_call":@"is_call",
- @"youpaipgood_evaluate_rate":@"good_evaluate_rate",
-
- @"youpaipis_anchor":@"is_anchor",
- @"youpaipis_same_city":@"is_same_city",
- @"youpaipvideo_status":@"video_status",
- @"youpaipvoice":@"voice",
- @"youpaipvoice_status":@"voice_status",
-
- @"youpaipis_rank":@"is_rank",
- @"youpaipmp3":@"mp3",
- @"youpaipmp3_second":@"mp3_second",
- @"youpaiplive_status":@"living.live_status",
- @"youpaiproom_id":@"living.room_id",
-
- @"youpaiplaber":@"laber",
- @"youpaipisPlay":@"isPlay",
- @"youpaipisSelectPlay":@"isSelectPlay",
- @"youpaipheight":@"height",
- @"youpaipoccupation":@"occupation",
- @"youpaipis_beckon":@"is_beckon",
- @"youpaipis_beckon_text":@"is_beckon_text",
- @"youpaipis_new_user":@"is_new_user",
- };
- }
- @end
|