From 213723b2205b21f849b3bce6bed743a7bb7c2404 Mon Sep 17 00:00:00 2001 From: qk123 <18211963828.@163.cpm> Date: Thu, 4 Dec 2025 09:33:44 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=B4=E6=8A=A4=E7=B3=BB=E7=BB=9F->=E6=A3=80?= =?UTF-8?q?=E6=9F=A5=E6=96=B9=E6=B3=95=E5=90=8E=E7=AB=AF=E6=8E=A5=E5=8F=A3?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E6=A0=A1=E9=AA=8C=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../check/appservice/impl/CheckMethodAppServiceImpl.java | 6 ------ 1 file changed, 6 deletions(-) diff --git a/openhis-server-new/openhis-application/src/main/java/com/openhis/web/check/appservice/impl/CheckMethodAppServiceImpl.java b/openhis-server-new/openhis-application/src/main/java/com/openhis/web/check/appservice/impl/CheckMethodAppServiceImpl.java index 67cd7981..3a15699a 100644 --- a/openhis-server-new/openhis-application/src/main/java/com/openhis/web/check/appservice/impl/CheckMethodAppServiceImpl.java +++ b/openhis-server-new/openhis-application/src/main/java/com/openhis/web/check/appservice/impl/CheckMethodAppServiceImpl.java @@ -30,9 +30,6 @@ public class CheckMethodAppServiceImpl implements ICheckMethodAppService { @Override public R addCheckMethod(CheckMethod checkMethod) { //1.数据校验 - if (ObjectUtil.isEmpty(checkMethod.getId())) { - return R.fail("检查方法id不能为空!"); - } if (ObjectUtil.isEmpty(checkMethod.getName())) { return R.fail("检查方法名称不能为空!"); } @@ -50,9 +47,6 @@ public class CheckMethodAppServiceImpl implements ICheckMethodAppService { @Override public R updateCheckMethod(CheckMethod checkMethod) { //1.数据校验 - if (ObjectUtil.isEmpty(checkMethod.getId())) { - return R.fail("检查方法id不能为空!"); - } if (ObjectUtil.isEmpty(checkMethod.getName())) { return R.fail("检查方法名称不能为空!"); }