feat: 订阅列表和免费列表

This commit is contained in:
Blizzard
2026-03-03 17:09:37 +08:00
parent d79beb4663
commit 042c99aa46
21 changed files with 4182 additions and 209 deletions
+2 -1
View File
@@ -10,7 +10,8 @@ func (r *CategoryRouter) InitCategoryRouter(Router *gin.RouterGroup) {
categoryRouter := Router.Group("/radio/category")
{
categoryRouter.POST("page", categoryApi.GetCategoryPage)
categoryRouter.POST("list", categoryApi.GetCategoryList)
categoryRouter.GET("tree", categoryApi.GetCategoryTree)
categoryRouter.GET("list", categoryApi.GetCategoryList)
categoryRouter.GET("detail", categoryApi.GetCategoryDetail)
categoryRouter.POST("save", categoryApi.SaveCategory)
categoryRouter.POST("update", categoryApi.UpdateCategory)
+1
View File
@@ -10,6 +10,7 @@ func (r *ChannelRouter) InitChannelRouter(Router *gin.RouterGroup) {
channelRouter := Router.Group("/radio/channel")
{
channelRouter.POST("list", channelApi.GetChannelList)
channelRouter.POST("freeList", channelApi.GetFreeChannelList)
channelRouter.GET("detail", channelApi.GetChannelDetail)
channelRouter.POST("save", channelApi.SaveChannel)
channelRouter.POST("update", channelApi.UpdateChannel)