123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //
- // YOUPAIZYVideoLikesModel.m
- // VQU
- //
- // Created by Elaine on 2020/11/17.
- // Copyright © 2020 leo. All rights reserved.
- //
- #import "YOUPAIZYVideoLikesModel.h"
- @implementation YOUPAIZYVideoLikesModel
- + (NSDictionary *)mj_replacedKeyFromPropertyName
- {
- return @{
- @"youpaipage":@"age",
- @"youpaipavatar":@"avatar",
- @"youpaipavatar_frame":@"avatar_frame",
- @"youpaipcity":@"city",
- @"youpaipcontent":@"content",
-
- @"youpaipcover_url":@"cover_url",
- @"youpaipcreate_time":@"create_time",
- @"youpaipdate":@"date",
- @"youpaipfrom_user_id":@"from_user_id",
- @"youpaipgender":@"gender",
-
- @"youpaipid":@"id",
- @"youpaipis_anchor":@"is_anchor",
- @"youpaipnickname":@"nickname",
- @"youpaiptype":@"type",
- @"youpaipvip":@"vip",
-
- @"youpaipvip_icon":@"vip_icon",
- @"youpaipvt_id":@"vt_id",
- @"youpaipfile_url":@"file_url",
- @"youpaiplike_count":@"like_count",
- @"youpaipis_watch":@"is_watch",
- @"youpaipis_live":@"is_live",
- };
- }
- @end
|