| 1234567891011121314151617181920 | package codesimport "github.com/go-kratos/kratos/v2/errors"func Error(code int32, msg string) error {	return errors.Error(code, "", msg)}func CommonErr(msg string) error {	return errors.Error(10400, "", msg)}func SystemErr(msg string) error {	return errors.Error(10500, "", "")}// 自定义返回值. 如自字重定向func Customize() error {	return errors.Error(-1, "", "")}
 |