kongdeqiang
2022-12-16 daf6a95086087ec99232eea8b4648b7541881f7c
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
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;
    }
}