Browse Source

[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.
3.1.2-release
Kerwin 2 years ago committed by zhuangchong
parent
commit
9e262a8771
  1. 2
      dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/entity/ProcessInstance.java

2
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;
/**

Loading…
Cancel
Save