Browse Source

更新异常提示信息,精准对应业务平台

tags/v2.4.1
xiaoying 1 year ago
parent
commit
b9a7c713e1
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      tuoheng_oidc_admin/src/main/java/com/tuoheng/service/impl/ClientUserServiceImpl.java

+ 3
- 3
tuoheng_oidc_admin/src/main/java/com/tuoheng/service/impl/ClientUserServiceImpl.java View File

throw new ServiceException(HttpStatus.BAD_REQUEST.value(), "业务平台新增租户失败"); throw new ServiceException(HttpStatus.BAD_REQUEST.value(), "业务平台新增租户失败");
} }
if (response.getBody().getCode() != JsonResult.SUCCESS) { if (response.getBody().getCode() != JsonResult.SUCCESS) {
log.error("业务平台更新租户响应失败, 业务平台标识:" + dto.getClientId());
log.error("业务平台新增租户响应失败,数据来源:" + platform.getPlatformName());
throw new ServiceException(HttpStatus.BAD_REQUEST.value(), response.getBody().getMsg()); throw new ServiceException(HttpStatus.BAD_REQUEST.value(), response.getBody().getMsg());
} }
return JsonResult.success(); return JsonResult.success();
throw new ServiceException(HttpStatus.BAD_REQUEST.value(), "业务平台更新租户失败"); throw new ServiceException(HttpStatus.BAD_REQUEST.value(), "业务平台更新租户失败");
} }
if (response.getBody().getCode() != JsonResult.SUCCESS) { if (response.getBody().getCode() != JsonResult.SUCCESS) {
log.error("业务平台更新租户响应失败, 业务平台标识:" + dto.getClientId());
log.error("业务平台更新租户响应失败,数据来源:" + platform.getPlatformName());
throw new ServiceException(HttpStatus.BAD_REQUEST.value(), response.getBody().getMsg()); throw new ServiceException(HttpStatus.BAD_REQUEST.value(), response.getBody().getMsg());
} }
return JsonResult.success(); return JsonResult.success();
throw new ServiceException(HttpStatus.BAD_REQUEST.value(), "业务平台删除租户失败"); throw new ServiceException(HttpStatus.BAD_REQUEST.value(), "业务平台删除租户失败");
} }
if (response.getBody().getCode() != JsonResult.SUCCESS) { if (response.getBody().getCode() != JsonResult.SUCCESS) {
log.error("业务平台更新租户响应失败, 业务平台标识:" + dto.getClientId());
log.error("业务平台删除租户响应失败,数据来源:" + platform.getPlatformName());
throw new ServiceException(HttpStatus.BAD_REQUEST.value(), response.getBody().getMsg()); throw new ServiceException(HttpStatus.BAD_REQUEST.value(), response.getBody().getMsg());
} }
return JsonResult.success(); return JsonResult.success();

Loading…
Cancel
Save