package com.boying.entity;
|
|
import java.util.Date;
|
|
/**
|
* @version v3.3
|
* @ClassName:CpuTemperatures.java
|
* @author: http://www.wgstart.com
|
* @date: 2021年1月16日
|
* @Description: cpu温度
|
* @Copyright: 2019-2021 wgcloud. All rights reserved.
|
*/
|
public class CpuTemperatures extends BaseEntity {
|
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
|
/**
|
* host名称
|
*/
|
private String hostname;
|
|
/**
|
* cpu标识
|
*/
|
private String core_index;
|
|
/**
|
* 临界值
|
*/
|
private String crit;
|
|
/**
|
* 当前温度
|
*/
|
private String input;
|
|
/**
|
* 最高
|
*/
|
private String max;
|
|
/**
|
* 创建时间
|
*/
|
private Date createTime;
|
|
public String getHostname() {
|
return hostname;
|
}
|
|
public void setHostname(String hostname) {
|
this.hostname = hostname;
|
}
|
|
public String getCore_index() {
|
return core_index;
|
}
|
|
public void setCore_index(String core_index) {
|
this.core_index = core_index;
|
}
|
|
public String getCrit() {
|
return crit;
|
}
|
|
public void setCrit(String crit) {
|
this.crit = crit;
|
}
|
|
public String getInput() {
|
return input;
|
}
|
|
public void setInput(String input) {
|
this.input = input;
|
}
|
|
public String getMax() {
|
return max;
|
}
|
|
public void setMax(String max) {
|
this.max = max;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
}
|