正在显示
2 个修改的文件
包含
0 行增加
和
21 行删除
1 | package protocol | 1 | package protocol |
2 | 2 | ||
3 | -import "github.com/prometheus/common/log" | ||
4 | - | ||
5 | var errmessge ErrorMap = map[int]string{ | 3 | var errmessge ErrorMap = map[int]string{ |
6 | 1: "系统异常", | 4 | 1: "系统异常", |
7 | 101: "clientId或clientSecret无效", | 5 | 101: "clientId或clientSecret无效", |
@@ -22,25 +20,6 @@ var errmessge ErrorMap = map[int]string{ | @@ -22,25 +20,6 @@ var errmessge ErrorMap = map[int]string{ | ||
22 | 4142: "Uuid已存在,请求失败", | 20 | 4142: "Uuid已存在,请求失败", |
23 | } | 21 | } |
24 | 22 | ||
25 | -func SearchErr(code int) ErrorCode { | ||
26 | - return errmessge.Search(code) | ||
27 | -} | ||
28 | -func NewReturnResponse(data interface{}, eRR error) *ResponseMessage { | ||
29 | - var msg *ResponseMessage | ||
30 | - if eRR == nil { | ||
31 | - msg = NewMesage(0) | ||
32 | - msg.Data = data | ||
33 | - return msg | ||
34 | - } else { | ||
35 | - log.Error("sys error:", eRR) | ||
36 | - } | ||
37 | - // fmt.Println("日志:" + eRR.Error()) | ||
38 | - if x, ok := eRR.(CustomErrParse); ok { | ||
39 | - return x.ParseToMessage() | ||
40 | - } | ||
41 | - return NewMesage(1) | ||
42 | -} | ||
43 | - | ||
44 | 23 | ||
45 | func InitMessageCode() { | 24 | func InitMessageCode() { |
46 | // messages := []struct { | 25 | // messages := []struct { |
-
请 注册 或 登录 后发表评论