From f0a6d1dff24bcf9242192f53b19928f3c8df7571 Mon Sep 17 00:00:00 2001 From: Flow <958079825@qq.com> Date: Fri, 27 Jun 2025 16:36:48 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B6=85=E5=A3=B0=E6=9F=A5=E8=AF=A2=E5=AD=97?= =?UTF-8?q?=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../InspectPatientServiceImpl.java | 49 +------------------ 1 file changed, 1 insertion(+), 48 deletions(-) diff --git a/yudao-module-inspect/yudao-module-inspect-biz/src/main/java/cn/iocoder/yudao/module/inspect/service/inspectpatient/InspectPatientServiceImpl.java b/yudao-module-inspect/yudao-module-inspect-biz/src/main/java/cn/iocoder/yudao/module/inspect/service/inspectpatient/InspectPatientServiceImpl.java index 4332a6e..7a6c22d 100644 --- a/yudao-module-inspect/yudao-module-inspect-biz/src/main/java/cn/iocoder/yudao/module/inspect/service/inspectpatient/InspectPatientServiceImpl.java +++ b/yudao-module-inspect/yudao-module-inspect-biz/src/main/java/cn/iocoder/yudao/module/inspect/service/inspectpatient/InspectPatientServiceImpl.java @@ -206,54 +206,7 @@ public class InspectPatientServiceImpl implements InspectPatientService { public InspectPatientDO getPatientShortid(String medicalSn) { LambdaQueryWrapper queryWrapper = new LambdaQueryWrapper<>(); queryWrapper.eq(InspectPatientDO::getMedicalSn, medicalSn) - .select( - InspectPatientDO::getId, - InspectPatientDO::getMedicalSn, - InspectPatientDO::getPName, - InspectPatientDO::getGender, - InspectPatientDO::getBirthday, - InspectPatientDO::getCardType, - InspectPatientDO::getCardId, - InspectPatientDO::getNationality, - InspectPatientDO::getNation, - InspectPatientDO::getRace, - InspectPatientDO::getPhoneNum, - InspectPatientDO::getStatus, - InspectPatientDO::getReportType, - InspectPatientDO::getMedicalDateTime, - InspectPatientDO::getChargeType, - InspectPatientDO::getTotalPrice, - InspectPatientDO::getIsprint, - InspectPatientDO::getSummaryResult, - InspectPatientDO::getAuditor, - InspectPatientDO::getAuditorTime, - InspectPatientDO::getAuditStatus, - InspectPatientDO::getInspectionOpinion, - InspectPatientDO::getChargetime, - InspectPatientDO::getDomicileaddress, - InspectPatientDO::getHospitalNo, - InspectPatientDO::getXcgcode, - InspectPatientDO::getNcgcode, - InspectPatientDO::getShqx, - InspectPatientDO::getZybs, - InspectPatientDO::getFeatures, - InspectPatientDO::getChiefinspectorid, - InspectPatientDO::getChiefinspector, - InspectPatientDO::getPrinttime, - InspectPatientDO::getBarcodetime, - InspectPatientDO::getPdfurl, - InspectPatientDO::getOldmanflag, - InspectPatientDO::getOrgname, - InspectPatientDO::getDistrictname, - InspectPatientDO::getHtnflag, - InspectPatientDO::getDiaflag, - InspectPatientDO::getSmiflag, - InspectPatientDO::getPulflag, - InspectPatientDO::getExamhoscode, - InspectPatientDO::getExamhosname, - InspectPatientDO::getShortid - ); - + .select(InspectPatientDO::getShortid); InspectPatientDO patientDO = patientMapper.selectOne(queryWrapper); return patientDO; }