feat: 新增金豆挂单管理模块及优化购买提示
All checks were successful
ci/woodpecker/push/my-first-workflow Pipeline was successful

This commit is contained in:
xinian
2026-03-17 16:56:55 +08:00
committed by cnb
parent 38f4be1e04
commit 376fa5e8af
4 changed files with 111 additions and 1 deletions

View File

@@ -0,0 +1,22 @@
package admin
import (
"blazing/cool"
"blazing/modules/player/service"
)
type GoldListController struct {
*cool.Controller
}
func init() {
var task_info_controller = &GoldListController{
&cool.Controller{
Prefix: "/admin/game/goldlist",
Api: []string{"Delete", "Update", "Info", "List", "Page"},
Service: service.NewGoldListService(0), //因为page已经过滤所以这里需要改成0
},
}
// 注册路由
cool.RegisterController(task_info_controller)
}