From 8f7338809995e8a771f22b2d0a46970cdd1fc051 Mon Sep 17 00:00:00 2001 From: wkdu Date: Sun, 16 Mar 2025 19:24:24 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=86=85=E5=AE=B9=E6=A8=A1?= =?UTF-8?q?=E7=89=88=E8=BE=93=E5=87=BA=E5=8F=82=E6=95=B0=E8=AE=BE=E7=BD=AE?= =?UTF-8?q?=E4=B8=BA=E9=9D=9E"output"=E4=B8=8D=E7=94=9F=E6=95=88=E7=9A=84?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/dev/tinyflow/core/parser/impl/TemplateNodeParser.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tinyflow-java-core/src/main/java/dev/tinyflow/core/parser/impl/TemplateNodeParser.java b/tinyflow-java-core/src/main/java/dev/tinyflow/core/parser/impl/TemplateNodeParser.java index 3b94503..6d81c0d 100644 --- a/tinyflow-java-core/src/main/java/dev/tinyflow/core/parser/impl/TemplateNodeParser.java +++ b/tinyflow-java-core/src/main/java/dev/tinyflow/core/parser/impl/TemplateNodeParser.java @@ -30,7 +30,7 @@ public class TemplateNodeParser extends BaseNodeParser { TemplateNode templateNode = new TemplateNode(); templateNode.setName(data.getString("label")); templateNode.setTemplate(data.getString("template")); - + templateNode.setOutputDef( data.getJSONArray("outputDefs").getJSONObject(0).getString("name")); addParameters(templateNode, data); addOutputDefs(templateNode, data); -- Gitee