From 9877bafd69f1f941d923929f5d9b5ad8e01e6363 Mon Sep 17 00:00:00 2001 From: memorylkf <312904636@qq.com> Date: Thu, 15 Jan 2026 16:03:50 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20[=E8=AF=95=E9=AA=8C=E7=AE=A1=E7=90=86]?= =?UTF-8?q?=20=E9=A2=84=E5=A1=AB=E8=A1=A8=E5=8D=95=E9=80=89=E6=8B=A9?= =?UTF-8?q?=E5=AE=A1=E6=A0=B8=E5=91=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/java/com/hxhq/system/controller/SysUserController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/system/controller/SysUserController.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/system/controller/SysUserController.java index 578c37a..828a1fe 100644 --- a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/system/controller/SysUserController.java +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/system/controller/SysUserController.java @@ -450,7 +450,7 @@ public class SysUserController extends BaseController @GetMapping("/studyUser") public AjaxResult studyUser(Long studyId,Long studySubjectId,String permit) { - if(studyId==null || studyId.longValue()<=0){ + if((studyId==null || studyId.longValue()<=0) && StringUtils.isBlank(permit)){ return AjaxResult.success(new ArrayList<>()); } List depts = userService.selectStudyUser(studyId,studySubjectId,permit);