1340691923@qq.com ebbf4120bf 第一次提交
2022-01-26 16:40:50 +08:00

16 lines
330 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//自定义请求辅助方法层
package request
//自定义业务异常
const (
IdNullError = 100002
EmptyParmasError = 100003
EmptyEventError = 100004
)
var ErrorMap = map[int]string{
IdNullError: "id不能为空",
EmptyParmasError: "请求参数不能为空",
EmptyEventError: "事件名不能为空",
}