From 52d79c7e5a1fb4316f34886ec336f69f56d5edb2 Mon Sep 17 00:00:00 2001 From: lxp <1928192722@qq.com> Date: 星期六, 15 三月 2025 10:48:46 +0800 Subject: [PATCH] 工时管理日工时管理以及辅助工时配置 --- performance-server/src/main/java/com/ruoyi/performance/controller/PerformanceShiftController.java | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/performance-server/src/main/java/com/ruoyi/performance/controller/PerformanceShiftController.java b/performance-server/src/main/java/com/ruoyi/performance/controller/PerformanceShiftController.java index 26b0197..04d1c08 100644 --- a/performance-server/src/main/java/com/ruoyi/performance/controller/PerformanceShiftController.java +++ b/performance-server/src/main/java/com/ruoyi/performance/controller/PerformanceShiftController.java @@ -115,7 +115,8 @@ @ApiOperation("鐝:鏌ヨ浜哄憳鍒楄〃") @GetMapping("/getUserList") public Result<?> getUserList(){ - return Result.success(performanceShiftService.getUserList()); + Map<String, List<Map<String, Object>>> userList = performanceShiftService.getUserList(); + return Result.success(userList); } -- Gitblit v1.9.3