YOUPAILCUserCountModel.m 738 B

123456789101112131415161718192021222324252627
  1. //
  2. // YOUPAILCUserCountModel.m
  3. // LiveChat
  4. //
  5. // Created by 张灿 on 2018/8/28.
  6. // Copyright © 2018年 caicai. All rights reserved.
  7. //
  8. #import "YOUPAILCUserCountModel.h"
  9. @implementation YOUPAILCUserCountModel
  10. + (NSDictionary *)mj_replacedKeyFromPropertyName
  11. {
  12. return @{
  13. @"youpaipfans_count":@"fans_count",
  14. @"youpaipnew_fans_count":@"new_fans_count",
  15. @"youpaipfollow_count":@"follow_count",
  16. @"youpaipvisitor_count":@"visitor_count",
  17. @"youpaipnew_visitor_count":@"new_visitor_count",
  18. @"youpaipviewer_count":@"viewer_count",
  19. @"youpaipnew_videoTrendsLike_count":@"new_videoTrendsLike_count",
  20. @"youpaipvideoTrendsLike_count":@"videoTrendsLike_count",
  21. };
  22. }
  23. @end