From e9e513cb3cc1963772a82056db477e66c2846a42 Mon Sep 17 00:00:00 2001 From: "15881625488@163.com" <15881625488@163.com> Date: Mon, 19 Jan 2026 19:41:11 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9A[=E9=A2=84=E5=A1=AB=E8=A1=A8?= =?UTF-8?q?=E5=8D=95]=E5=A4=8D=E5=88=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/hxhq/business/controller/StudyFormPreController.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/StudyFormPreController.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/StudyFormPreController.java index 98738f5..8649bd6 100644 --- a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/StudyFormPreController.java +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/StudyFormPreController.java @@ -52,9 +52,9 @@ public class StudyFormPreController extends BaseController @RequiresPermissions({"business:studyFormPre:bj","business:studyFormPre:xz", "business:nonTrialFormPre:bj","business:nonTrialFormPre:xz", "business:drugFormPre:bj","business:drugFormPre:xz"}) - public AjaxResult studyList(Study study) { + public AjaxResult studyList() { QueryWrapper queryWrapper = Wrappers.query(); - queryWrapper.ne("status", StudyStatusEnum.dgd.getValue()); + queryWrapper.in("status", StudyStatusEnum.syz.getValue(),StudyStatusEnum.ysd.getValue()); return AjaxResult.success(studyService.list(queryWrapper)); }