提交 | 用户 | 时间
|
516ef4
|
1 |
package com.iailab.module.shasteel.job.dto; |
L |
2 |
|
|
3 |
import lombok.Data; |
|
4 |
|
|
5 |
import java.io.Serializable; |
|
6 |
import java.util.Date; |
|
7 |
|
|
8 |
/** |
|
9 |
* 定时任务日志 |
|
10 |
* |
|
11 |
* @author Mark sunlightcs@gmail.com |
|
12 |
* @since 1.0.0 |
|
13 |
*/ |
|
14 |
@Data |
|
15 |
public class ScheduleJobLogDTO implements Serializable { |
|
16 |
private static final long serialVersionUID = 1L; |
|
17 |
|
|
18 |
private Long id; |
|
19 |
|
|
20 |
private Long jobId; |
|
21 |
|
|
22 |
private String beanName; |
|
23 |
|
|
24 |
private String params; |
|
25 |
|
|
26 |
private Integer status; |
|
27 |
|
|
28 |
private String error; |
|
29 |
|
|
30 |
private Integer times; |
|
31 |
|
|
32 |
private Date createDate; |
|
33 |
|
|
34 |
} |