From 3f92623d408f8fb3c85cff0f96f26ef3ede7d481 Mon Sep 17 00:00:00 2001 From: Rui_Li <877258667@qq.com> Date: Thu, 23 Apr 2026 17:23:17 +0800 Subject: [PATCH] =?UTF-8?q?IFS=20CommGroup3=20=E5=8F=82=E6=95=B0=E6=96=B0?= =?UTF-8?q?=E5=A2=9E=E5=92=8C=E5=92=8C=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/com/spring/ifs/bean/InventoryServiceBean.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/spring/ifs/bean/InventoryServiceBean.java b/src/main/java/com/spring/ifs/bean/InventoryServiceBean.java index 96d03b18..8b62f15d 100644 --- a/src/main/java/com/spring/ifs/bean/InventoryServiceBean.java +++ b/src/main/java/com/spring/ifs/bean/InventoryServiceBean.java @@ -995,7 +995,7 @@ public class InventoryServiceBean { * @date 2026/4/22 09:16 * @version 1.0 */ - public Map modifyInventoryPartCommGroup3(Server srv, PartIfsInventory inData) throws APException { + public Map modifyInventoryPartCommGroup3(Server srv, PartIfsInventory inData) { logger.info("Inventory PartCommGroup3 修改开始:"+JSON.toJSONString(inData)); //公共参数 String contract = inData.getContract(); @@ -1015,6 +1015,8 @@ public class InventoryServiceBean { inParam.put("commGroup3", commGroup3); inParam.put("ifsRowId", ifsRowId); Map resultMap = InventoryPartApi.modifyInventoryPartCommGroup3(srv, inParam); + returnMap.put("resultCode", "200"); + returnMap.put("obj", JSON.toJSONString(resultMap)); //打印日志 logger.info("Inventory Part 修改结束:"+JSON.toJSONString(resultMap)); } catch(APException e){