From dd71478d5eccba2976625ecb607469dd792c47ca Mon Sep 17 00:00:00 2001 From: memorylkf <312904636@qq.com> Date: Wed, 25 Feb 2026 11:54:30 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20[=E5=A1=AB=E6=8A=A5=E8=A1=A8=E5=8D=95]?= =?UTF-8?q?=20=E8=A1=A8=E5=8D=95=E7=8A=B6=E6=80=81=E7=AD=9B=E9=80=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/hxhq/business/service/impl/StudyFormFillServiceImpl.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/StudyFormFillServiceImpl.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/StudyFormFillServiceImpl.java index d9f476b..db4c14a 100644 --- a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/StudyFormFillServiceImpl.java +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/StudyFormFillServiceImpl.java @@ -85,8 +85,8 @@ public class StudyFormFillServiceImpl extends ServiceImpl queryQxList(StudyFormFill form) { QueryWrapper queryWrapper = new QueryWrapper<>(); queryWrapper.eq("study_id",form.getStudyId()); - queryWrapper.and(q->q.eq("status",StudyFormFillBdztEnum.ywc.getValue()) - .or().eq("status",StudyFormFillBdztEnum.ywcfh.getValue())); + queryWrapper.and(q->q.eq("bdzt",StudyFormFillBdztEnum.ywc.getValue()) + .or().eq("bdzt",StudyFormFillBdztEnum.ywcfh.getValue())); if(StringUtils.isNoneBlank(form.getUserMc())){ queryWrapper.like("user_mc",form.getUserMc()); }