From 84b1c68ce2111f80867b1bd169c38a990a50d37c Mon Sep 17 00:00:00 2001 From: wxc <191104855@qq.com> Date: Tue, 28 Oct 2025 17:27:55 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=A7=A3=E5=86=B3=EF=BC=9A=E7=BB=BC?= =?UTF-8?q?=E5=90=88=E6=9F=A5=E8=AF=A2=E6=B6=89=E5=8F=8A=E4=BA=BA=E5=91=98?= =?UTF-8?q?=E8=AD=A6=E5=8F=B7=E3=80=81=E8=BA=AB=E4=BB=BD=E8=AF=81=E6=9F=A5?= =?UTF-8?q?=E8=AF=A2=E4=B8=8D=E5=88=B0=E6=95=B0=E6=8D=AE=E7=9A=84=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/biutag/supervision/service/NegativeQueryService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/biutag/supervision/service/NegativeQueryService.java b/src/main/java/com/biutag/supervision/service/NegativeQueryService.java index e63ec9d..3d8eb48 100644 --- a/src/main/java/com/biutag/supervision/service/NegativeQueryService.java +++ b/src/main/java/com/biutag/supervision/service/NegativeQueryService.java @@ -101,7 +101,7 @@ public class NegativeQueryService { // 涉及人员 if (StrUtil.isNotBlank(param.getBlameKey()) && StrUtil.isNotBlank(param.getBlameValue())) { LambdaQueryWrapper qw = new LambdaQueryWrapper<>(); - switch (param.getResponderKey()) { + switch (param.getBlameKey()) { case "name": qw.like(NegativeBlame::getBlameName, param.getBlameValue()); break;