From 28d07a3287d5203c233336a3adad98359953b813 Mon Sep 17 00:00:00 2001 From: "15881625488@163.com" <15881625488@163.com> Date: Mon, 30 Mar 2026 16:31:02 +0800 Subject: [PATCH] =?UTF-8?q?fix:[=E8=B5=84=E6=BA=90=E5=BA=93=E7=AE=A1?= =?UTF-8?q?=E7=90=86]bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/java/com/hxhq/business/controller/PublicController.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/PublicController.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/PublicController.java index 81a8971..29c022b 100644 --- a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/PublicController.java +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/PublicController.java @@ -182,6 +182,9 @@ public class PublicController extends BaseController { if (StringUtils.isNoneBlank(study.getLeaderName())) { queryWrapper.like("leader_name", study.getLeaderName()); } + if (study.getLeader()!=null&&study.getLeader().longValue()>0) { + queryWrapper.eq("leader", study.getLeader()); + } List list = studyService.list(queryWrapper); return getDataTable(list); }