1234567891011121314151617181920212223242526272829303132333435363738394041 |
- //
- // YOUPAIZYVideoModel.m
- // VQU
- //
- // Created by Elaine on 2020/11/12.
- // Copyright © 2020 leo. All rights reserved.
- //
- #import "YOUPAIZYVideoModel.h"
- @implementation YOUPAIZYVideoModel+ (NSDictionary *)mj_replacedKeyFromPropertyName
- {
- return @{
- @"youpaipvideoId":@"id",
- @"youpaipuser_id":@"user_id",
- @"youpaipcity_id":@"city_id",
- @"youpaipcity":@"city",
- @"youpaipcontent":@"content",
- @"youpaipcover_url":@"cover_url",
- @"youpaipfile_url":@"file_url",
- @"youpaipsize":@"size",
- @"youpaipcreate_time":@"create_time",
- @"youpaiplike_count":@"like_count",
- @"youpaipview_count":@"view_count",
- @"youpaipis_like":@"is_like",
- @"youpaipis_follow":@"is_follow",
- @"youpaipnickname":@"nickname",
- @"youpaipusercode":@"usercode",
- @"youpaipavatar":@"avatar",
- @"youpaipis_anchor":@"is_anchor",
- @"youpaipgender":@"gender",
- @"youpaipage":@"age",
- @"youpaipheart_count":@"heart_count",
- @"youpaipmode":@"mode",
- @"youpaipvip":@"vip",
- @"youpaipvip_icon":@"vip_icon",
- @"youpaipis_liveing":@"is_liveing",
- };
- }
- @end
|