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