init: radio init commit

This commit is contained in:
Blizzard
2026-02-28 15:56:26 +08:00
parent fc585fa4df
commit d79beb4663
63 changed files with 2540 additions and 6399 deletions
+29
View File
@@ -0,0 +1,29 @@
package response
// ChannelResponse 频道响应
type ChannelResponse struct {
Id string `json:"id"`
CategoryId string `json:"categoryId"`
Name string `json:"name"`
Description string `json:"description"`
CoverUrl string `json:"coverUrl"`
StreamUrl string `json:"streamUrl"`
Tags string `json:"tags"`
IsVipOnly int `json:"isVipOnly"`
Sort int `json:"sort"`
Status int `json:"status"`
}
// ChannelDetailResponse 频道详情响应
type ChannelDetailResponse struct {
Id string `json:"id"`
CategoryId string `json:"categoryId"`
Name string `json:"name"`
Description string `json:"description"`
CoverUrl string `json:"coverUrl"`
StreamUrl string `json:"streamUrl"`
Tags string `json:"tags"`
IsVipOnly int `json:"isVipOnly"`
Sort int `json:"sort"`
Status int `json:"status"`
}