UpgradeInfo.java
931 Bytes
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
package vion.model.monitor;
import com.baomidou.mybatisplus.annotation.*;
import lombok.Getter;
import lombok.Setter;
import java.time.LocalDateTime;
/**
* @author vion
* @date 2024/11/24
*/
@Getter
@Setter
@TableName(value = "m_upgrade_info")
public class UpgradeInfo {
@TableId(value = "id", type = IdType.AUTO)
private Long id;
@TableField(value = "agent_uid")
private String agentUid;
/**
* 版本号
*/
@TableField(value = "version")
private String version;
/**
* 内容
*/
@TableField(value = "content")
private String content;
/**
* 上报时间
*/
@TableField(value = "report_time")
private LocalDateTime reportTime;
@TableField(value = "create_time", fill = FieldFill.INSERT)
private LocalDateTime createTime;
@TableField(value = "update_time", fill = FieldFill.INSERT_UPDATE)
private LocalDateTime updateTime;
}