封装基础数据操作,错误返回

This commit is contained in:
qiyunfanbo126.com 2024-05-07 18:38:04 +08:00
parent f1a968c3a2
commit 30c0cd8677
2 changed files with 3 additions and 1 deletions

View File

@ -3,4 +3,5 @@ package common
const (
TOKEN_PRE = "player_token_"
TOKEN_Admin = "Admin_token_"
ADMIN_V1 = "/admin/api/v1"
)

View File

@ -1,12 +1,13 @@
package requestmapping
import (
"qteam/app/constants/common"
"qteam/app/http/entities/backend"
)
var BackendRequestMap = map[string]func() interface{}{
"/admin/api/v1/product/create": func() interface{} {
common.ADMIN_V1 + "/product/create": func() interface{} {
return new(backend.ProductCreateRequest)
},
}