From fef5ec0a7bdef253390ab3082879f2c8c436c219 Mon Sep 17 00:00:00 2001 From: "everywhere.z" Date: Mon, 26 Sep 2022 19:21:19 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9C=A8LiteflowResponse=E6=96=B9=E6=B3=95?= =?UTF-8?q?=E4=B8=AD=E5=A2=9E=E5=8A=A0getExecuteStepWithTime=E6=96=B9?= =?UTF-8?q?=E6=B3=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/yomahub/liteflow/flow/LiteflowResponse.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/liteflow-core/src/main/java/com/yomahub/liteflow/flow/LiteflowResponse.java b/liteflow-core/src/main/java/com/yomahub/liteflow/flow/LiteflowResponse.java index 1c90a1989..380fed5fc 100644 --- a/liteflow-core/src/main/java/com/yomahub/liteflow/flow/LiteflowResponse.java +++ b/liteflow-core/src/main/java/com/yomahub/liteflow/flow/LiteflowResponse.java @@ -111,7 +111,11 @@ public class LiteflowResponse implements Serializable { } public String getExecuteStepStr(){ - return this.getSlot().getExecuteStepStr(); + return getExecuteStepStrWithoutTime(); + } + + public String getExecuteStepStrWithTime(){ + return this.getSlot().getExecuteStepStr(true); } public String getExecuteStepStrWithoutTime(){