ServiceRecord.java
984 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
47
48
49
50
51
package vion.model;
import com.baomidou.mybatisplus.annotation.*;
import lombok.Getter;
import lombok.Setter;
import java.time.LocalDateTime;
/**
* 服务状态记录
*/
@Getter
@Setter
@TableName(value = "m_service_record")
public class ServiceRecord {
@TableId(value = "id", type = IdType.AUTO)
private Long id;
@TableField(value = "agent_uid")
private String agentUid;
@TableField(value = "service_uid")
private String serviceUid;
/**
* 服务名称
*/
@TableField(exist = false)
private String name;
/**
* 响应时长
*/
@TableField(value = "response_time")
private Long responseTime;
/**
* 状态
*/
@TableField(value = "\"status\"")
private Boolean status;
/**
* 监测时间
*/
@TableField(value = "monitor_time")
private LocalDateTime monitorTime;
@TableField(value = "create_time", fill = FieldFill.INSERT)
private LocalDateTime createTime;
}