liulin
2025-07-01 c311cb1a9ecad57ac15cca5ea4581f0aa2574762
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/**
#                                                    __----~~~~~~~~~~~------___
#                                   .  .   ~~//====......          __--~ ~~
#                   -.            \_|//     |||\\  ~~~~~~::::... /~
#                ___-==_       _-~o~  \/    |||  \\            _/~~-
#        __---~~~.==~||\=_    -_--~/_-~|-   |\\   \\        _/~
#    _-~~     .=~    |  \\-_    '-~7  /-   /  ||    \      /
#  .~       .~       |   \\ -_    /  /-   /   ||      \   /
# /  ____  /         |     \\ ~-_/  /|- _/   .||       \ /
# |~~    ~~|--~~~~--_ \     ~==-/   | \~--===~~        .\
#          '         ~-|      /|    |-~\~~       __--~~
#                      |-~~-_/ |    |   ~\_   _-~            /\
#                           /  \     \__   \/~                \__
#                       _--~ _/ | .-~~____--~-/                  ~~==.
#                      ((->/~   '.|||' -_|    ~~-/ ,              . _||
#                                 -_     ~\      ~~---l__i__i__i--~~_/
#                                 _-~-__   ~)  \--______________--~~
#                               //.-~~~-~_--~- |-------~~~~~~~~
#                                      //.-~~~--\
#                  神兽保佑
#                  永无BUG!
*/
package com.lunhan.water.repository.po;
 
import lombok.Data;
 
import com.baomidou.mybatisplus.annotation.*;
 
import java.io.Serializable;
import java.sql.Timestamp;
 
/**
 * 定时任务信息
 * @author lin.liu
 */
@Data
@TableName("quartz_task_info")
public class QuartzTaskInfoPO implements Serializable {
    /**
     * 主键
     */
    private Long id;
    /**
     * 版本号:需要乐观锁控制
     */
    @TableField(value = "version")
    private Long version;
    /**
     * 任务编号
     */
    @TableField(value = "task_no")
    private String taskNo;
    /**
     * 任务名称
     */
    @TableField(value = "task_name")
    private String taskName;
    /**
     * 定时规则表达式
     */
    @TableField(value = "scheduler_rule")
    private String schedulerRule;
    /**
     * 冻结状态
     */
    @TableField(value = "status")
    private Integer status;
    /**
     * 执行者(job方法名)
     */
    @TableField(value = "executor")
    private String executor;
    /**
     * 冻结时间
     */
    @TableField(value = "frozen_time")
    private Long frozenTime;
    /**
     * 解冻时间
     */
    @TableField(value = "unfrozen_time")
    private Long unfrozenTime;
    /**
     * 发送方式
     */
    @TableField(value = "send_type")
    private String sendType;
    /**
     * 请求地址
     */
    @TableField(value = "url")
    private String url;
    /**
     * 执行参数
     */
    @TableField(value = "execute_parameter")
    private String executeParameter;
    /**
     * 上次执行时间
     */
    @TableField(value = "last_time")
    private String lastTime;
    /**
     * 上次执行参数
     */
    @TableField(value = "last_parameter")
    private String lastParameter;
    /**
     * 上次执行结果
     */
    @TableField(value = "last_status")
    private Integer lastStatus;
    /**
     * 数据创建时间
     */
    @TableField(value = "create_time")
    private Long createTime;
    /**
     * 最后更新时间
     */
    @TableField(value = "update_time")
    private Timestamp updateTime;
    /**
     * 是否删除(逻辑删除)
     */
    @TableLogic
    @TableField(value = "is_delete")
    private Integer isDelete;
}