AgentVO.java
1.42 KB
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
package vion.vo.monitor;
import lombok.Getter;
import lombok.Setter;
import vion.model.monitor.AgentRecord;
import java.time.LocalDateTime;
/**
* @author vion
* @date 2024/10/16
*/
@Getter
@Setter
public class AgentVO {
private Long id;
/**
* 唯一id
*/
private String uid;
/**
* agent 版本号
*/
private String version;
/**
* 用户名
*/
private String username;
/**
* 名称
*/
private String name;
/**
* 别名
*/
private String alias;
/**
* agent类型 1:store,2:mall
*/
private Short type;
/**
* 主机名
*/
private String hostname;
/**
* 本地ip
*/
private String localIpaddr;
/**
* 公网ip
*/
private String ipaddr;
/**
* 操作系统
*/
private String os;
/**
* 系统信息
*/
private String systemInfo;
/**
* 时区
*/
private String timeZone;
/**
* 授权到期时间
*/
private String licenseDate;
/**
* 归属地
*/
private String addr;
/**
* 0:离线 1:在线
*/
private Short status;
/**
* 备注
*/
private String remark;
private LocalDateTime createTime;
private LocalDateTime updateTime;
private AgentRecord agentRecord;
/**
* 异常的服务名称
*/
private String serviceName;
}