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
| package com.doumee.entity;
|
| import com.baomidou.mybatisplus.annotation.IdType;
| import com.baomidou.mybatisplus.annotation.TableId;
| import lombok.AllArgsConstructor;
| import lombok.Data;
| import lombok.NoArgsConstructor;
|
| import java.util.Date;
|
| /**
| *
| * @author 公众号:知了一笑
| * @since 2023-07-26 11:04
| */
| @Data
| @NoArgsConstructor
| @AllArgsConstructor
| public class QuartzLog {
|
| @TableId(value = "id",type = IdType.AUTO)
| private Long id;
|
| private Integer jobId;
|
| private String beanName;
|
| private String params;
|
| private Integer state;
|
| private String error;
|
| private Integer times;
|
| private Date createTime;
|
| }
|
|