1234567891011121314151617181920212223242526272829 |
- package common
- const (
- Success = 200 // 返回正常
- InternalError = 500 // 内部错误
- InvalidParameters = 1001 // 参数无效
- InvalidRoom = 1002 // 无效的房间
- InvalidUser = 1003 // 无效的用户
- RecordNotFound = 1004 // 未查询到记录
- UserIsNotInRoom = 1005 // 用户不在此房间
- SendMessageError = 1006 // 发送消息失败
- SaveMessageError = 1007 // 消息保存失败
- UserIsNotAttention = 1008 // 用户没有互相关注
- UserIsBlackAtten = 1009 // 已拉黑
- )
- var ErrorMap = map[int]string{
- Success: "SUCCESS",
- InternalError: "内部错误",
- InvalidParameters: "无效的参数",
- InvalidRoom: "无效的房间",
- InvalidUser: "无效的用户",
- RecordNotFound: "未查询到记录",
- UserIsNotInRoom: "该用户不在此房间",
- SendMessageError: "消息发送失败",
- SaveMessageError: "消息保存失败",
- UserIsNotAttention: "用户没有互相关注",
- UserIsBlackAtten: "存在拉黑",
- }
|