From ca5dd9aa64af1febee27983c09367fee31b67ea6 Mon Sep 17 00:00:00 2001 From: efren <79289982@qq.com> Date: Mon, 11 Aug 2025 09:18:47 +0800 Subject: [PATCH] =?UTF-8?q?=E7=B3=BB=E7=BB=9F=E7=AE=A1=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../mall/ebtp/common/base/client/SystemClient.java | 4 ++++ .../mall/ebtp/common/base/fallback/SystemClientFallback.java | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/uboot-common/src/main/java/com/chinaunicom/mall/ebtp/common/base/client/SystemClient.java b/uboot-common/src/main/java/com/chinaunicom/mall/ebtp/common/base/client/SystemClient.java index f93b79a..8666902 100644 --- a/uboot-common/src/main/java/com/chinaunicom/mall/ebtp/common/base/client/SystemClient.java +++ b/uboot-common/src/main/java/com/chinaunicom/mall/ebtp/common/base/client/SystemClient.java @@ -44,6 +44,10 @@ public interface SystemClient { @ApiParam(value = "查询对象数据", required = false) @SpringQueryMap SysUser param ); + @ApiOperation("根据用户ID集合查询所有用户信息") + @PostMapping("/v1/sysuser/getUsersByIds") + BaseResponse> getUsersByIds(@RequestBody List ids); + @ApiOperation("根据用户ID查询本单位下所有用户分页数据") @PostMapping("/v1/sysuser/getPageByUserCompany") BaseResponse> getPageByUserCompany(@ApiParam(value = "分页及查询条件", required = true) @RequestBody SysUserVO sysUserVO); diff --git a/uboot-common/src/main/java/com/chinaunicom/mall/ebtp/common/base/fallback/SystemClientFallback.java b/uboot-common/src/main/java/com/chinaunicom/mall/ebtp/common/base/fallback/SystemClientFallback.java index 796be7a..caf314a 100644 --- a/uboot-common/src/main/java/com/chinaunicom/mall/ebtp/common/base/fallback/SystemClientFallback.java +++ b/uboot-common/src/main/java/com/chinaunicom/mall/ebtp/common/base/fallback/SystemClientFallback.java @@ -30,6 +30,11 @@ public class SystemClientFallback implements SystemClient { return null; } + @Override + public BaseResponse> getUsersByIds(List ids) { + return null; + } + @Override public BaseResponse> getPageByUserCompany(SysUserVO sysUserVO) { return null;