protocol.go
1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
package mybeego
import (
"fmt"
"github.com/astaxie/beego"
)
//type IMessage interface {
// MsgCode() int
// ErrMsg() string
// Data() interface{}
//}
const (
TOTAL_SWITCH_ON int = 0 // 通行
TOTAL_SWITCH_OFF int = 1 // 关闭,系统停止受理
SWITCH_INFO_KEY string ="switch_info"
)
type Message struct {
Errno int `json:"code"`
Errmsg string `json:"msg"`
SysTime int64 `json:"-"`
Data interface{} `json:"data"`
}
var ErrnoMsg map[int]string
//var MessageMap map[int]*Message
func NewMessage(code int) *Message {
return &Message{
Errno: code,
Errmsg: ErrnoMsg[code],
//SysTime: time.Now().Unix(),
}
}
func NewErrMessage(code int, errMsg ...interface{}) *Message {
defer func() {
if p := recover(); p != nil {
beego.Error(p)
}
}()
msg := NewMessage(code)
if len(errMsg) > 1 {
msg.Data = fmt.Sprintf(errMsg[0].(string), errMsg[1:]...)
} else if len(errMsg) == 1 {
msg.Data = errMsg[0].(string)
} else {
msg.Data = nil
}
return msg
}
func init() {
// 注:错误码9999消息文本可自定义
ErrnoMsg = make(map[int]string)
ErrnoMsg[0] = "成功"
ErrnoMsg[1] = "系统错误"
ErrnoMsg[2] = "参数错误"
ErrnoMsg[3] = "系统升级中"
ErrnoMsg[4] = "您目前使用的版本过低,无法显示最新的相关内容,请使用最新版本。"
ErrnoMsg[5] = "描述包含敏感词,请重新编辑"
ErrnoMsg[6] ="重复提交,请稍后再试"
}
func SetMessage(code int,msg string){
ErrnoMsg[code] = msg
}