music.go 233 B

123456789101112
  1. package model
  2. type MusicResult struct {
  3. Code int `json:"code"`
  4. Data map[int64]*Music `json:"data"`
  5. }
  6. type Music struct {
  7. ID int64 `json:"song_id"`
  8. Cover string `json:"cover_url"`
  9. Title string `json:"title"`
  10. }