kongdeqiang
2023-02-17 ac94b1d939373a684344764e5b00dac44feabd81
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
package com.wgcloud.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;
    }
}