Vestmore_GO/utils/basic/error_code.go

11 lines
185 B
Go
Raw Normal View History

2024-04-09 05:38:29 +00:00
package basic
type ErrorCode struct {
Code int `json:"code"`
Message string `json:"message"`
}
var (
ErrParamParse = &ErrorCode{Code: 10100, Message: "参数解析错误"}
)