kongdeqiang
2023-07-10 aaabd0a9eb8f88705208fc9b0ff441dd0fd7ccbb
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
package com.boying.entity;
 
import java.util.Date;
 
/**
 * @version v3.3
 * @ClassName:HostGroup.java
 * @author: http://www.wgstart.com
 * @date: 2021年1月16日
 * @Description: 监控资源分组
 * @Copyright: 2017-2021 wgcloud. All rights reserved.
 */
public class HostGroup extends BaseEntity {
 
 
    /**
     *
     */
    private static final long serialVersionUID = 1L;
 
 
    /**
     * 分组名称
     */
    private String groupName;
 
 
    /**
     * 备注
     */
    private String remark;
 
    /**
     * 分组类型,1监控主机,2数通监测PING,3监控进程,4监控端口,5监控docker,6数通监测SNMP
     */
    private String groupType;
 
 
 
    /**
     * 创建时间
     */
    private Date createTime;
 
    public String getGroupName() {
        return groupName;
    }
 
    public void setGroupName(String groupName) {
        this.groupName = groupName;
    }
 
    public String getRemark() {
        return remark;
    }
 
    public void setRemark(String remark) {
        this.remark = remark;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public String getGroupType() {
        return groupType;
    }
 
    public void setGroupType(String groupType) {
        this.groupType = groupType;
    }
}