YOUPAIZYVideoModel.m 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. //
  2. // YOUPAIZYVideoModel.m
  3. // VQU
  4. //
  5. // Created by Elaine on 2020/11/12.
  6. // Copyright © 2020 leo. All rights reserved.
  7. //
  8. #import "YOUPAIZYVideoModel.h"
  9. @implementation YOUPAIZYVideoModel+ (NSDictionary *)mj_replacedKeyFromPropertyName
  10. {
  11. return @{
  12. @"youpaipvideoId":@"id",
  13. @"youpaipuser_id":@"user_id",
  14. @"youpaipcity_id":@"city_id",
  15. @"youpaipcity":@"city",
  16. @"youpaipcontent":@"content",
  17. @"youpaipcover_url":@"cover_url",
  18. @"youpaipfile_url":@"file_url",
  19. @"youpaipsize":@"size",
  20. @"youpaipcreate_time":@"create_time",
  21. @"youpaiplike_count":@"like_count",
  22. @"youpaipview_count":@"view_count",
  23. @"youpaipis_like":@"is_like",
  24. @"youpaipis_follow":@"is_follow",
  25. @"youpaipnickname":@"nickname",
  26. @"youpaipusercode":@"usercode",
  27. @"youpaipavatar":@"avatar",
  28. @"youpaipis_anchor":@"is_anchor",
  29. @"youpaipgender":@"gender",
  30. @"youpaipage":@"age",
  31. @"youpaipheart_count":@"heart_count",
  32. @"youpaipmode":@"mode",
  33. @"youpaipvip":@"vip",
  34. @"youpaipvip_icon":@"vip_icon",
  35. @"youpaipis_liveing":@"is_liveing",
  36. };
  37. }
  38. @end