作者 唐旭辉

... ... @@ -28,7 +28,7 @@ var errmessge ErrorMap = map[string]string{
"10037": "用户的部门必填",
"10038": "用户的角色必填",
"10039": "用户已存在",
"10039": "注册用户失败",
"10040": "注册用户失败",
//部门相关
"10041": "无效的主管设置",
"10042": "无效的上级部门",
... ...
... ... @@ -58,7 +58,7 @@ func RequestUCenterAddUser(phone string, nickname string, avatar string) (*Respo
}
if !(ucenterReturn.Code == ResponseCode0 &&
ucenterReturn.Msg == ResponseMsgOk) {
return nil, protocol.NewErrWithMessage("10039")
return nil, protocol.NewErrWithMessage("10040")
}
return ucenterReturn, nil
}
... ...