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