package com.wgcloud.entity;
|
|
import java.util.Date;
|
|
/**
|
* @version v3.3
|
* @ClassName:DeskSmart.java
|
* @author: http://www.wgstart.com
|
* @date: 2021年1月16日
|
* @Description: 查看磁盘smart信息
|
* @Copyright: 2019-2021 wgcloud. All rights reserved.
|
*/
|
public class DiskSmart extends BaseEntity {
|
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* host名称
|
*/
|
private String hostname;
|
|
/**
|
* 盘符类型
|
*/
|
private String fileSystem;
|
|
/**
|
* 磁盘健康状态,PASSED健康,FAILED失败,Disabled已禁用
|
*/
|
private String diskState;
|
|
/**
|
* 通电时间,小时
|
*/
|
private String powerHours;
|
|
/**
|
* 通电次数
|
*/
|
private String powerCount;
|
|
/**
|
* 磁盘温度
|
*/
|
private String temperature;
|
|
/**
|
* 创建时间
|
*/
|
private Date createTime;
|
|
public String getHostname() {
|
return hostname;
|
}
|
|
public void setHostname(String hostname) {
|
this.hostname = hostname;
|
}
|
|
public String getFileSystem() {
|
return fileSystem;
|
}
|
|
public void setFileSystem(String fileSystem) {
|
this.fileSystem = fileSystem;
|
}
|
|
public String getDiskState() {
|
return diskState;
|
}
|
|
public void setDiskState(String diskState) {
|
this.diskState = diskState;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public String getPowerHours() {
|
return powerHours;
|
}
|
|
public void setPowerHours(String powerHours) {
|
this.powerHours = powerHours;
|
}
|
|
public String getPowerCount() {
|
return powerCount;
|
}
|
|
public void setPowerCount(String powerCount) {
|
this.powerCount = powerCount;
|
}
|
|
public String getTemperature() {
|
return temperature;
|
}
|
|
public void setTemperature(String temperature) {
|
this.temperature = temperature;
|
}
|
}
|