From b6fb74a40b9958190d68240142ffa5630fd2c5ab Mon Sep 17 00:00:00 2001 From: lxd <1004405501@qq.com> Date: Mon, 21 Apr 2025 09:38:42 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9AST=E5=AF=B9=E5=BA=94SGOT=20A?= =?UTF-8?q?LT=E5=AF=B9=E5=BA=94=20sppt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../admin/inspectpatient/InspectPatientController.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/yudao-module-inspect/yudao-module-inspect-biz/src/main/java/cn/iocoder/yudao/module/inspect/controller/admin/inspectpatient/InspectPatientController.java b/yudao-module-inspect/yudao-module-inspect-biz/src/main/java/cn/iocoder/yudao/module/inspect/controller/admin/inspectpatient/InspectPatientController.java index 999fb4d..6b28ac2 100644 --- a/yudao-module-inspect/yudao-module-inspect-biz/src/main/java/cn/iocoder/yudao/module/inspect/controller/admin/inspectpatient/InspectPatientController.java +++ b/yudao-module-inspect/yudao-module-inspect-biz/src/main/java/cn/iocoder/yudao/module/inspect/controller/admin/inspectpatient/InspectPatientController.java @@ -885,7 +885,7 @@ public class InspectPatientController { if (result.getItemValue() != null) { if (NumberUtils.isNumeric(result.getItemValue())) { double value = Double.parseDouble(result.getItemValue()); - patientJYInfoVO.setSgpt(value); + patientJYInfoVO.setSgot(value); } } break; @@ -901,7 +901,7 @@ public class InspectPatientController { if (result.getItemValue() != null) { if (NumberUtils.isNumeric(result.getItemValue())) { double value = Double.parseDouble(result.getItemValue()); - patientJYInfoVO.setSgot(value); + patientJYInfoVO.setSgpt(value); } } break;