You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
446 B
16 lines
446 B
package formatoutput
|
|
|
|
var ErrorCodeMsg = map[int]string{
|
|
0: "成功",
|
|
1: "",
|
|
100: "提交的数据格式错误!",
|
|
101: "提交的数据不能为空!",
|
|
102: "关键参数不能为空!",
|
|
103: "该数据已经存在!请不要重复添加",
|
|
104: "数据写入失败!",
|
|
105: "数据查询失败!",
|
|
106: "编辑失败!",
|
|
107: "未能查询到数据!",
|
|
108: "删除失败",
|
|
2000: "账户或密码错误!",
|
|
}
|
|
|