123456789101112131415161718192021222324252627 |
- //
- // YOUPAILCUserCountModel.m
- // LiveChat
- //
- // Created by 张灿 on 2018/8/28.
- // Copyright © 2018年 caicai. All rights reserved.
- //
- #import "YOUPAILCUserCountModel.h"
- @implementation YOUPAILCUserCountModel
- + (NSDictionary *)mj_replacedKeyFromPropertyName
- {
- return @{
- @"youpaipfans_count":@"fans_count",
- @"youpaipnew_fans_count":@"new_fans_count",
- @"youpaipfollow_count":@"follow_count",
- @"youpaipvisitor_count":@"visitor_count",
- @"youpaipnew_visitor_count":@"new_visitor_count",
- @"youpaipviewer_count":@"viewer_count",
- @"youpaipnew_videoTrendsLike_count":@"new_videoTrendsLike_count",
- @"youpaipvideoTrendsLike_count":@"videoTrendsLike_count",
- };
- }
- @end
|