沙钢智慧能源系统后端代码
liriming
2024-10-14 516ef4b0df8c26a3088e113e39d8198f161d4ea4
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/**
 * Copyright (c) 2018 人人开源 All rights reserved.
 *
 * https://www.renren.io
 *
 * 版权所有,侵权必究!
 */
 
package com.iailab.module.shasteel.job.dto;
 
import io.swagger.v3.oas.annotations.media.Schema;
import io.swagger.v3.oas.annotations.tags.Tag;
import lombok.Data;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * 定时任务日志
 *
 * @author Mark sunlightcs@gmail.com
 * @since 1.0.0
 */
@Data
@Tag(name = "定时任务日志")
public class ScheduleJobLogDTO implements Serializable {
    private static final long serialVersionUID = 1L;
 
    @Schema(description = "id")
    private Long id;
 
    @Schema(description = "任务id")
    private Long jobId;
 
    @Schema(description = "spring bean名称")
    private String beanName;
 
    @Schema(description = "参数")
    private String params;
 
    @Schema(description = "任务状态    0:失败    1:成功")
    private Integer status;
 
    @Schema(description = "失败信息")
    private String error;
 
    @Schema(description = "耗时(单位:毫秒)")
    private Integer times;
 
    @Schema(description = "创建时间")
    private Date createDate;
 
}