From a6e46f167541253f0fc765616867f6a7d7f73a8f Mon Sep 17 00:00:00 2001 From: aikai Date: Fri, 16 Aug 2024 09:49:00 +0800 Subject: [PATCH] =?UTF-8?q?=20=E6=AD=A3=E7=A1=AE=E4=BD=BF=E7=94=A8dto.dept?= =?UTF-8?q?Id=E5=9C=A8LogStatistics=E6=9F=A5=E8=AF=A2=E4=B8=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 解决LogStatisticsMapper.xml中的部门ID不正确引用问题,确保部门筛选逻辑在查询中正确应用。 --- .../src/main/resources/mapper/worklog/LogStatisticsMapper.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yudao-module-system/yudao-module-system-biz/src/main/resources/mapper/worklog/LogStatisticsMapper.xml b/yudao-module-system/yudao-module-system-biz/src/main/resources/mapper/worklog/LogStatisticsMapper.xml index 6e4c9d3d..d549fed5 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/resources/mapper/worklog/LogStatisticsMapper.xml +++ b/yudao-module-system/yudao-module-system-biz/src/main/resources/mapper/worklog/LogStatisticsMapper.xml @@ -173,7 +173,7 @@ and b.type = #{dto.type} - and b.dept_id = #{deptId} + and b.dept_id = #{dto.deptId}