1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- //
- // YOUPAILZMusicListItemModel.m
- // VQU
- //
- // Created by CY on 2021/6/25.
- // Copyright © 2021 leo. All rights reserved.
- //
- #import "YOUPAILZMusicListItemModel.h"
- @implementation YOUPAILZMusicListItemModel
- //+ (NSDictionary*)mj_objectClassInArray{
- // return @{
- // @"youpaipcover" : [YOUPAILZMusicCoverModel class],
- // @"youpaipartist" : [YOUPAILZMusicArtistModel class]
- // };
- //}
- + (NSDictionary *)mj_replacedKeyFromPropertyName
- {
- // return @{
- // @"youpaipmusicId":@"musicId",
- // @"youpaipmusicName":@"musicName",
- // @"youpaipcover":@"cover",
- // @"youpaipduration":@"duration",
- // @"youpaipartist":@"artist",
- // @"youpaipalbumName":@"albumName",
- // @"youpaipalbumId":@"albumId",
- // @"youpaipisPlay":@"isPlay",
- // };
-
- return @{
- @"youpaipsongCode":@"songCode",
- @"youpaipname":@"name",
- @"youpaipsinger":@"singer",
- @"youpaipposter":@"poster",
- @"youpaipduration":@"duration",
- @"youpaiplyricType":@"lyricType",
- @"youpaipis_add":@"is_add"
- };
- }
- @end
|