You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
735 B
23 lines
735 B
package audio |
|
|
|
type Audio struct { |
|
MenuID int64 `json:"menu_id,omitempty"` |
|
Title string `json:"title,omitempty"` |
|
CoverURL string `json:"cover_url,omitempty"` |
|
RecordNum int `json:"record_num,omitempty"` |
|
PlayNum int32 `json:"play_num,omitempty"` |
|
FavoriteNum int32 `json:"favorite_num,omitempty"` |
|
Face string `json:"face,omitempty"` |
|
Songs []*struct { |
|
Title string `json:"title,omitempty"` |
|
} `json:"songs,omitempty"` |
|
PaTime int64 `json:"pa_time,omitempty"` |
|
Type int8 `json:"type,omitempty"` |
|
Ctgs []*Ctg `json:"ctgs,omitempty"` |
|
} |
|
|
|
type Ctg struct { |
|
ItemID int64 `json:"item_id,omitempty"` |
|
ItemVal string `json:"item_val,omitempty"` |
|
Schema string `json:"schema,omitempty"` |
|
}
|
|
|