作者 唐旭辉

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