From 35e745af597348275f4a93a43f78ec5fdcd50551 Mon Sep 17 00:00:00 2001 From: lxd <1004405501@qq.com> Date: Thu, 15 Aug 2024 17:50:58 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9PatientexamlistPageReqVO?= =?UTF-8?q?=E5=88=86=E9=A1=B5=E6=9F=A5=E8=AF=A2=E6=9D=A1=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dal/mysql/patientexamlist/PatientexamlistMapper.java | 7 ------- 1 file changed, 7 deletions(-) diff --git a/yudao-module-tblist/yudao-module-tblist-biz/src/main/java/cn/iocoder/yudao/module/tblist/dal/mysql/patientexamlist/PatientexamlistMapper.java b/yudao-module-tblist/yudao-module-tblist-biz/src/main/java/cn/iocoder/yudao/module/tblist/dal/mysql/patientexamlist/PatientexamlistMapper.java index 4174f544a..c60ec1042 100644 --- a/yudao-module-tblist/yudao-module-tblist-biz/src/main/java/cn/iocoder/yudao/module/tblist/dal/mysql/patientexamlist/PatientexamlistMapper.java +++ b/yudao-module-tblist/yudao-module-tblist-biz/src/main/java/cn/iocoder/yudao/module/tblist/dal/mysql/patientexamlist/PatientexamlistMapper.java @@ -54,13 +54,9 @@ public interface PatientexamlistMapper extends BaseMapperX { .eqIfPresent(PatientexamlistDO::getExamId, reqVO.getExamId()) .likeIfPresent(PatientexamlistDO::getPName, reqVO.getPName()) .eqIfPresent(PatientexamlistDO::getGender, reqVO.getGender()) - .eqIfPresent(PatientexamlistDO::getBirthday, reqVO.getBirthday()) .betweenIfPresent(PatientexamlistDO::getExamDate, reqVO.getExamDate()) - .eqIfPresent(PatientexamlistDO::getDeviceType, reqVO.getDeviceType()) - .eqIfPresent(PatientexamlistDO::getSeDc, reqVO.getSeDc()) .likeIfPresent(PatientexamlistDO::getExamItemName, reqVO.getExamItemName()) .eqIfPresent(PatientexamlistDO::getReportstatus, reqVO.getReportstatus()) - .betweenIfPresent(PatientexamlistDO::getApplicationDate, reqVO.getApplicationDate()) .betweenIfPresent(PatientexamlistDO::getUploadDate, reqVO.getUploadDate()) .likeIfPresent(PatientexamlistDO::getOrgName, reqVO.getOrgName()) .eqIfPresent(PatientexamlistDO::getOrgId, reqVO.getOrgId()) @@ -70,9 +66,6 @@ public interface PatientexamlistMapper extends BaseMapperX { .eqIfPresent(PatientexamlistDO::getDiagResults, reqVO.getDiagResults()) .betweenIfPresent(PatientexamlistDO::getDiagDate, reqVO.getDiagDate()) .eqIfPresent(PatientexamlistDO::getDiagDoctor, reqVO.getDiagDoctor()) - .eqIfPresent(PatientexamlistDO::getReviewDoctor, reqVO.getReviewDoctor()) - .betweenIfPresent(PatientexamlistDO::getReviewDate, reqVO.getReviewDate()) - .eqIfPresent(PatientexamlistDO::getThumbnailImgUrl, reqVO.getThumbnailImgUrl()) .betweenIfPresent(PatientexamlistDO::getCreateTime, reqVO.getCreateTime()) .eqIfPresent(PatientexamlistDO::getOrgId, reqVO.getHighLevelOrgId()) .orderByDesc(PatientexamlistDO::getId));