YOUPAILCHomeListModel.m 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. //
  2. // YOUPAILCHomeListModel.m
  3. // LiveChat
  4. //
  5. // Created by 张灿 on 2018/9/2.
  6. // Copyright © 2018年 caicai. All rights reserved.
  7. //
  8. #import "YOUPAILCHomeListModel.h"
  9. @implementation YOUPAILCHomeListModel
  10. //注意!!!!
  11. + (NSDictionary*)mj_objectClassInArray{
  12. return @{
  13. @"youpaipgame_skill" : [YOUPAILZGameAccompanyModel class],
  14. @"youpaiplaber" :[YOUPAILZlaber_listModel class],
  15. @"youpaipis_rank":[YOUPAILZHomeRankModel class]
  16. };
  17. }
  18. -(void)setValue:(id)value forUndefinedKey:(NSString *)key{
  19. }
  20. + (NSDictionary *)mj_replacedKeyFromPropertyName
  21. {
  22. return @{
  23. @"youpaipisSelect":@"isSelect",
  24. // @"youpaipuserid":@"userid",
  25. @"youpaipuserid":@"id",
  26. @"youpaipnickname":@"nickname",
  27. @"youpaipusercode":@"usercode",
  28. @"youpaipcover":@"cover",
  29. @"youpaipcity":@"city",
  30. @"youpaipgive_score":@"give_score",
  31. @"youpaipgender":@"gender",
  32. @"youpaipage":@"age",
  33. @"youpaipprice":@"price",
  34. @"youpaipvip_icon":@"vip_icon",
  35. @"youpaipgame_skill":@"game_skill",
  36. @"youpaipstatus":@"onlineNew.OnlineStatus",
  37. @"youpaipstatusMsg":@"onlineNew.statusMsgNew",
  38. @"youpaipsign":@"sign",
  39. @"youpaipAddnewStatus":@"onlineNew.newStatus",
  40. @"youpaipAddnewMsg":@"onlineNew.newMsg",
  41. @"youpaipAddnewColor":@"onlineNew.newColor",
  42. @"youpaipgrade":@"grade",
  43. @"youpaipbadge":@"badge",
  44. @"youpaipdiscount":@"discount",
  45. @"youpaipis_follow":@"is_follow",
  46. @"youpaipis_call":@"is_call",
  47. @"youpaipgood_evaluate_rate":@"good_evaluate_rate",
  48. @"youpaipis_anchor":@"is_anchor",
  49. @"youpaipis_same_city":@"is_same_city",
  50. @"youpaipvideo_status":@"video_status",
  51. @"youpaipvoice":@"voice",
  52. @"youpaipvoice_status":@"voice_status",
  53. @"youpaipis_rank":@"is_rank",
  54. @"youpaipmp3":@"mp3",
  55. @"youpaipmp3_second":@"mp3_second",
  56. @"youpaiplive_status":@"living.live_status",
  57. @"youpaiproom_id":@"living.room_id",
  58. @"youpaiplaber":@"laber",
  59. @"youpaipisPlay":@"isPlay",
  60. @"youpaipisSelectPlay":@"isSelectPlay",
  61. @"youpaipheight":@"height",
  62. @"youpaipoccupation":@"occupation",
  63. @"youpaipis_beckon":@"is_beckon",
  64. @"youpaipis_beckon_text":@"is_beckon_text",
  65. @"youpaipis_new_user":@"is_new_user",
  66. };
  67. }
  68. @end