package com.wgcloud.entity; import java.util.Date; /** * @version v3.3 * @ClassName:DeskIo.java * @author: http://www.wgstart.com * @date: 2021年1月16日 * @Description: 查看磁盘io信息 * @Copyright: 2019-2021 wgcloud. All rights reserved. */ public class DeskIo extends BaseEntity { /** * */ private static final long serialVersionUID = 1L; /** * host名称 */ private String hostname; /** * 盘符类型 */ private String fileSystem; /** * 读取总次数 */ private String readCount; /** * 写入总次数 */ private String writeCount; /** * 读取总字节 */ private String readBytes; /** * 写入总字节 */ private String writeBytes; /** * 指(除NetBSD和OpenBSD外的所有时间)从磁盘读取所用的时间(毫秒) */ private String readTime; /** * 指(除NetBSD和OpenBSD外的所有时间)从磁盘写入所用的时间(毫秒) */ private String writeTime; /** * 创建时间 */ 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 getReadCount() { return readCount; } public void setReadCount(String readCount) { this.readCount = readCount; } public String getWriteCount() { return writeCount; } public void setWriteCount(String writeCount) { this.writeCount = writeCount; } public String getReadBytes() { return readBytes; } public void setReadBytes(String readBytes) { this.readBytes = readBytes; } public String getWriteBytes() { return writeBytes; } public void setWriteBytes(String writeBytes) { this.writeBytes = writeBytes; } public String getReadTime() { return readTime; } public void setReadTime(String readTime) { this.readTime = readTime; } public String getWriteTime() { return writeTime; } public void setWriteTime(String writeTime) { this.writeTime = writeTime; } public Date getCreateTime() { return createTime; } public void setCreateTime(Date createTime) { this.createTime = createTime; } }