报告打印
Some checks are pending
Java CI with Maven / build (11) (push) Waiting to run
Java CI with Maven / build (17) (push) Waiting to run
Java CI with Maven / build (8) (push) Waiting to run
yudao-ui-admin CI / build (14.x) (push) Waiting to run
yudao-ui-admin CI / build (16.x) (push) Waiting to run

This commit is contained in:
旺仔 2024-08-15 17:33:00 +08:00
parent e193d526d7
commit 905290ba3c

View File

@ -20,30 +20,31 @@ public interface PatientexamlistMapper extends BaseMapperX<PatientexamlistDO> {
//IllnessCasePageReqVO分页
default PageResult<PatientexamlistDO> selectPage(IllnessCasePageReqVO reqVO) {
return selectPage(reqVO, new LambdaQueryWrapperX<PatientexamlistDO>()
.likeIfPresent(PatientexamlistDO::getRegId,reqVO.getRegId())
.likeIfPresent(PatientexamlistDO::getExamId,reqVO.getExamId())
.geIfPresent(PatientexamlistDO::getExamDate,reqVO.getExamDate_ge())
.leIfPresent(PatientexamlistDO::getExamDate,reqVO.getExamDate_le())
.likeIfPresent(PatientexamlistDO::getDeviceName,reqVO.getDeviceName())
.likeIfPresent(PatientexamlistDO::getDeviceType,reqVO.getDeviceType())
.eqIfPresent(PatientexamlistDO::getDiagFlag,reqVO.getDiagFlag())
.likeIfPresent(PatientexamlistDO::getExamItemName,reqVO.getExamItemName())
.likeIfPresent(PatientexamlistDO::getReportstatus,reqVO.getReportstatus())
.likeIfPresent(PatientexamlistDO::getPName,reqVO.getPname())
.likeIfPresent(PatientexamlistDO::getGender,reqVO.getGender())
.likeIfPresent(PatientexamlistDO::getRegId, reqVO.getRegId())
.likeIfPresent(PatientexamlistDO::getExamId, reqVO.getExamId())
.geIfPresent(PatientexamlistDO::getExamDate, reqVO.getExamDate_ge())
.leIfPresent(PatientexamlistDO::getExamDate, reqVO.getExamDate_le())
.likeIfPresent(PatientexamlistDO::getDeviceName, reqVO.getDeviceName())
.likeIfPresent(PatientexamlistDO::getDeviceType, reqVO.getDeviceType())
.eqIfPresent(PatientexamlistDO::getDiagFlag, reqVO.getDiagFlag())
.likeIfPresent(PatientexamlistDO::getExamItemName, reqVO.getExamItemName())
.likeIfPresent(PatientexamlistDO::getReportstatus, reqVO.getReportstatus())
.likeIfPresent(PatientexamlistDO::getPName, reqVO.getPname())
.likeIfPresent(PatientexamlistDO::getGender, reqVO.getGender())
.orderByAsc(PatientexamlistDO::getRegId));
}
//ReportPrintPageReqVO分页
default PageResult<PatientexamlistDO> selectPage(ReportPrintPageReqVO reqVO) {
return selectPage(reqVO, new LambdaQueryWrapperX<PatientexamlistDO>()
.likeIfPresent(PatientexamlistDO::getRegId,reqVO.getRegId())
.likeIfPresent(PatientexamlistDO::getExamId,reqVO.getExamId())
.geIfPresent(PatientexamlistDO::getExamDate,reqVO.getExamDate_ge())
.leIfPresent(PatientexamlistDO::getExamDate,reqVO.getExamDate_le())
.likeIfPresent(PatientexamlistDO::getDeviceName,reqVO.getDeviceName())
.eqIfPresent(PatientexamlistDO::getDeviceType,reqVO.getDeviceType())
.likeIfPresent(PatientexamlistDO::getPName,reqVO.getPname())
.likeIfPresent(PatientexamlistDO::getRegId, reqVO.getRegId())
.likeIfPresent(PatientexamlistDO::getExamId, reqVO.getExamId())
.geIfPresent(PatientexamlistDO::getExamDate, reqVO.getExamDate_ge())
.leIfPresent(PatientexamlistDO::getExamDate, reqVO.getExamDate_le())
.likeIfPresent(PatientexamlistDO::getDeviceName, reqVO.getDeviceName())
.eqIfPresent(PatientexamlistDO::getDeviceType, reqVO.getDeviceType())
.likeIfPresent(PatientexamlistDO::getPName, reqVO.getPname())
.isNotNull(PatientexamlistDO::getDiagDate)
.orderByAsc(PatientexamlistDO::getRegId));
}
@ -63,7 +64,7 @@ public interface PatientexamlistMapper extends BaseMapperX<PatientexamlistDO> {
.betweenIfPresent(PatientexamlistDO::getUploadDate, reqVO.getUploadDate())
.likeIfPresent(PatientexamlistDO::getOrgName, reqVO.getOrgName())
.eqIfPresent(PatientexamlistDO::getOrgId, reqVO.getOrgId())
// .eqIfPresent(PatientexamlistDO::getHighLevelOrgId, reqVO.getHighLevelOrgId())
// .eqIfPresent(PatientexamlistDO::getHighLevelOrgId, reqVO.getHighLevelOrgId())
.betweenIfPresent(PatientexamlistDO::getCreateDate, reqVO.getCreateDate())
.eqIfPresent(PatientexamlistDO::getExamDescription, reqVO.getExamDescription())
.eqIfPresent(PatientexamlistDO::getDiagResults, reqVO.getDiagResults())