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); }