From 8d8d54eafbbcb7c811cde10381504ebc2214fd37 Mon Sep 17 00:00:00 2001 From: "castle.zang" Date: Thu, 9 Jan 2025 17:39:24 +0800 Subject: [PATCH] =?UTF-8?q?44791=20=E8=BF=81=E7=A7=BB=E7=BA=BF=E6=9C=AB?= =?UTF-8?q?=E5=A4=A7=E5=B1=8F=E7=9C=8B=E6=9D=BF=E5=88=B0=20pcn?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../apiservice/controller/busi/MesEarlyWarningKanBanController.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/i3plus-ext-mes-pcn-apiservice/src/main/java/cn/estsh/i3plus/ext/mes/pcn/apiservice/controller/busi/MesEarlyWarningKanBanController.java b/modules/i3plus-ext-mes-pcn-apiservice/src/main/java/cn/estsh/i3plus/ext/mes/pcn/apiservice/controller/busi/MesEarlyWarningKanBanController.java index 994c2b3..ef2923a 100644 --- a/modules/i3plus-ext-mes-pcn-apiservice/src/main/java/cn/estsh/i3plus/ext/mes/pcn/apiservice/controller/busi/MesEarlyWarningKanBanController.java +++ b/modules/i3plus-ext-mes-pcn-apiservice/src/main/java/cn/estsh/i3plus/ext/mes/pcn/apiservice/controller/busi/MesEarlyWarningKanBanController.java @@ -83,12 +83,13 @@ public class MesEarlyWarningKanBanController { */ @GetMapping(path = "/get/{id}/{organizeCode}") public ResultBean getKanbanData(@PathVariable Long id,@PathVariable String organizeCode){ + MesEarlyWarningKanBan kanbanData; try { - mesEarlyWarningService.getKanbanData(id,organizeCode); + kanbanData = mesEarlyWarningService.getKanbanData(id, organizeCode); } catch (Exception e) { return ResultBean.fail(e.getMessage()); } - return ResultBean.success("删除成功"); + return ResultBean.success("查询成功").setResultObject(kanbanData); }