Pārlūkot izejas kodu

[Bug-12997][API] Fix that the end time is not reset when the workflow instance reruns. (#12998)

* Fix that the end time is not reset when the workflow instance reruns.
Kerwin 2 gadi atpakaļ
vecāks
revīzija
f9a0ecbc81

+ 2 - 0
dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/entity/ProcessInstance.java

@@ -37,6 +37,7 @@ import lombok.AllArgsConstructor;
 import lombok.Data;
 import lombok.NoArgsConstructor;
 
+import com.baomidou.mybatisplus.annotation.FieldStrategy;
 import com.baomidou.mybatisplus.annotation.IdType;
 import com.baomidou.mybatisplus.annotation.TableField;
 import com.baomidou.mybatisplus.annotation.TableId;
@@ -95,6 +96,7 @@ public class ProcessInstance {
     /**
      * end time
      */
+    @TableField(updateStrategy = FieldStrategy.IGNORED)
     private Date endTime;
 
     /**