刘光辉
13 小时以前 34981c30a78e8bbd7791131059a9210f9928b62c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package jnpf.workflow.common.model.vo;
 
import java.io.Serializable;
import java.time.LocalDateTime;
 
import com.fasterxml.jackson.annotation.JsonFormat;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
@Data
public class HistoricInstanceVo implements Serializable {
 
    @Schema(name = "instanceId", description = "实例ID")
    private String instanceId;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    @Schema(name = "startTime", description = "开始时间")
    private LocalDateTime startTime;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    @Schema(name = "endTime", description = "结束时间")
    private LocalDateTime endTime;
 
    @Schema(name = "durationInMillis", description = "耗时")
    private Long durationInMillis;
 
    @Schema(name = "deleteReason", description = "删除原因")
    private String deleteReason;
}