-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ac56ff6
commit 2b2fd6a
Showing
2 changed files
with
41 additions
and
30 deletions.
There are no files selected for viewing
2 changes: 0 additions & 2 deletions
2
musicapi/src/main/java/com/guoyi/musicapi/kugou/KuGouApiService.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
69 changes: 41 additions & 28 deletions
69
musicapi/src/main/java/com/guoyi/musicapi/kugou/KugouPlayMv.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,60 @@ | ||
package com.guoyi.musicapi.kugou | ||
|
||
data class KugouPlayMv( | ||
val errcode: Int, | ||
val error: String, | ||
val id: Int, | ||
val is_publish: Int, | ||
val mp3data: Mp3data, | ||
val mvdata: Mvdata, | ||
val mvicon: String, | ||
val play_count: Int, | ||
val remark: String, | ||
val singer: String, | ||
val songname: String, | ||
val status: Int, | ||
val timelength: Int, | ||
val track: Int, | ||
val type: Int | ||
val errcode: Int, | ||
val error: String, | ||
val id: Int, | ||
val is_publish: Int, | ||
val mp3data: Mp3data, | ||
val hash: String, | ||
val mvdata: Mvdata, | ||
val mvicon: String, | ||
val play_count: Int, | ||
val remark: String, | ||
val singer: String, | ||
val songname: String, | ||
val status: Int, | ||
val timelength: Int, | ||
val track: Int, | ||
val type: Int | ||
) | ||
|
||
data class Mp3data( | ||
val bitrate: Int, | ||
val filesize: Int, | ||
val hash: String, | ||
val timelength: Int | ||
val bitrate: Int, | ||
val filesize: Int, | ||
val hash: String, | ||
val timelength: Int | ||
) | ||
|
||
data class Mvdata( | ||
val le: Le, | ||
val rq: Rq, | ||
val sq: Sq | ||
val le: Le, | ||
val rq: Rq, | ||
val sq: Sq | ||
) | ||
|
||
data class Le( | ||
val backupdownurl: List<String>, | ||
val bitrate: Int, | ||
val downurl: String, | ||
val filesize: Int, | ||
val hash: String, | ||
val timelength: Int | ||
val backupdownurl: List<String>, | ||
val bitrate: Int, | ||
val downurl: String, | ||
val filesize: Int, | ||
val hash: String, | ||
val timelength: Int | ||
) | ||
|
||
class Rq( | ||
val backupdownurl: List<String>, | ||
val bitrate: Int, | ||
val downurl: String, | ||
val filesize: Int, | ||
val hash: String, | ||
val timelength: Int | ||
) | ||
|
||
class Sq( | ||
val backupdownurl: List<String>, | ||
val bitrate: Int, | ||
val downurl: String, | ||
val filesize: Int, | ||
val hash: String, | ||
val timelength: Int | ||
) |