增加更新体检机构

This commit is contained in:
Flow 2025-04-29 17:57:54 +08:00
parent fd4922540c
commit 3c5626ded0

View File

@ -40,6 +40,8 @@ public interface InspectPatientMapper extends BaseMapperX<InspectPatientDO> {
.eqIfPresent(InspectPatientDO::getSummaryResult, reqVO.getSummaryResult())
.eqIfPresent(InspectPatientDO::getAuditor, reqVO.getAuditor())
.eqIfPresent(InspectPatientDO::getAuditStatus, reqVO.getAuditStatus())
.eqIfPresent(InspectPatientDO::getExamhoscode, reqVO.getExamhoscode())
.eqIfPresent(InspectPatientDO::getExamhosname, reqVO.getExamhosname())
// .eqIfPresent(InspectPatientDO::getInspectionOpinion, reqVO.getInspectionOpinion())
.eqIfPresent(InspectPatientDO::getIsprint, reqVO.getIsprint())
// .betweenIfPresent(InspectPatientDO::getAuditorTime, reqVO.getAuditorTime())
@ -72,7 +74,9 @@ public interface InspectPatientMapper extends BaseMapperX<InspectPatientDO> {
InspectPatientDO::getAuditor,
InspectPatientDO::getAuditStatus,
InspectPatientDO::getIsprint,
InspectPatientDO::getPrinttime
InspectPatientDO::getPrinttime,
InspectPatientDO::getExamhoscode,
InspectPatientDO::getExamhosname
);
return selectPage(reqVO, queryWrapper);
}