package com.wgcloud.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;
|
}
|
}
|