mitao
2024-09-21 f44e4d609e7efaed9eac545137970b1e334f8106
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
package com.ruoyi.system.api.domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.time.LocalDateTime;
import lombok.Data;
 
/**
 * <p>
 *
 * </p>
 *
 * @author jqs
 * @since 2023-05-29
 */
@Data
@TableName("t_delay_task")
public class DelayTask implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 延时任务id
     */
    @TableId(value = "task_id", type = IdType.AUTO)
    private Long taskId;
    /**
     * 删除标记
     */
    @TableField("del_flag")
    private Integer delFlag;
    /**
     * 键值
     */
    @TableField("redis_key")
    private String redisKey;
    /**
     * 执行时间
     */
    @TableField("execute_time")
    private LocalDateTime executeTime;
 
    @TableField("create_time")
    private LocalDateTime createTime;
    
}