Unverified Commit c06eadc8 authored by wmtbnbo's avatar wmtbnbo Committed by GitHub

[Fix-491][admin,web] Fix refresh the status page with abnormal jitter

[Fix-491][admin,web] Fix refresh the status page with abnormal jitter
parent 34ff41b3
package com.dlink.model;
import com.baomidou.mybatisplus.annotation.*;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import lombok.EqualsAndHashCode;
......@@ -39,12 +40,15 @@ public class JobInstance implements Serializable {
private String error;
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss")
@TableField(fill = FieldFill.INSERT)
private LocalDateTime createTime;
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss")
@TableField(fill = FieldFill.INSERT_UPDATE)
private LocalDateTime updateTime;
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss")
private LocalDateTime finishTime;
private Long duration;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment