YOUPAILZMusicListItemModel.m 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. //
  2. // YOUPAILZMusicListItemModel.m
  3. // VQU
  4. //
  5. // Created by CY on 2021/6/25.
  6. // Copyright © 2021 leo. All rights reserved.
  7. //
  8. #import "YOUPAILZMusicListItemModel.h"
  9. @implementation YOUPAILZMusicListItemModel
  10. //+ (NSDictionary*)mj_objectClassInArray{
  11. // return @{
  12. // @"youpaipcover" : [YOUPAILZMusicCoverModel class],
  13. // @"youpaipartist" : [YOUPAILZMusicArtistModel class]
  14. // };
  15. //}
  16. + (NSDictionary *)mj_replacedKeyFromPropertyName
  17. {
  18. // return @{
  19. // @"youpaipmusicId":@"musicId",
  20. // @"youpaipmusicName":@"musicName",
  21. // @"youpaipcover":@"cover",
  22. // @"youpaipduration":@"duration",
  23. // @"youpaipartist":@"artist",
  24. // @"youpaipalbumName":@"albumName",
  25. // @"youpaipalbumId":@"albumId",
  26. // @"youpaipisPlay":@"isPlay",
  27. // };
  28. return @{
  29. @"youpaipsongCode":@"songCode",
  30. @"youpaipname":@"name",
  31. @"youpaipsinger":@"singer",
  32. @"youpaipposter":@"poster",
  33. @"youpaipduration":@"duration",
  34. @"youpaiplyricType":@"lyricType",
  35. @"youpaipis_add":@"is_add"
  36. };
  37. }
  38. @end