소스 검색

在LiteflowResponse方法中增加getExecuteStepWithTime方法

everywhere.z 2 년 전
부모
커밋
fef5ec0a7b
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 5 1
      liteflow-core/src/main/java/com/yomahub/liteflow/flow/LiteflowResponse.java

+ 5 - 1
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(){