1
All checks were successful
ci/woodpecker/push/my-first-workflow Pipeline was successful

This commit is contained in:
昔念
2026-02-20 21:34:27 +08:00
parent aeeac8b2ed
commit 922f7c3622
17 changed files with 138 additions and 38 deletions

View File

@@ -12,7 +12,7 @@ type ItemBagController struct {
func init() {
var task_info_controller = &ItemBagController{
&cool.Controller{
Prefix: "/admin/sun/item",
Prefix: "/admin/game/item",
Api: []string{"Delete", "Update", "Info", "List", "Page"},
Service: service.NewItemService(0), //因为page已经过滤所以这里需要改成0
},

View File

@@ -15,7 +15,7 @@ type PlayerController struct {
func init() {
var task_info_controller = &PlayerController{
&cool.Controller{
Prefix: "/admin/sun/player",
Prefix: "/admin/game/player",
Api: []string{"Add", "Delete", "Update", "Info", "List", "Page"},
Service: service.NewInfoService(0),
},