exhibition-register/pkg/err/resultCode.go

10 lines
251 B
Go
Raw Normal View History

2024-01-29 09:02:58 +00:00
package err
var ResultCode = map[string]string{
"OK": "正常返回",
"BAD_REQUEST": "请求参数错误",
"PERMISSION_ERROR": "权限错误",
"BUSINESS_ERROR": "业务内容错误",
"SERVER_ERROR": "服务器错误",
}