com.heanbian.block.zabbix.api.ZabbixTrendGetResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zabbix-client Show documentation
Show all versions of zabbix-client Show documentation
heanbian zabbix client component.
package com.heanbian.block.zabbix.api;
import com.fasterxml.jackson.databind.PropertyNamingStrategy;
import com.fasterxml.jackson.databind.annotation.JsonNaming;
@JsonNaming(PropertyNamingStrategy.SnakeCaseStrategy.class)
public class ZabbixTrendGetResponse {
private String itemid;
private String clock;// 单位秒
private String num;
private String valueMin;
private String valueAvg;
private String valueMax;
public String getItemid() {
return itemid;
}
public void setItemid(String itemid) {
this.itemid = itemid;
}
public String getClock() {
return clock;
}
public void setClock(String clock) {
this.clock = clock;
}
public String getNum() {
return num;
}
public void setNum(String num) {
this.num = num;
}
public String getValueMin() {
return valueMin;
}
public void setValueMin(String valueMin) {
this.valueMin = valueMin;
}
public String getValueAvg() {
return valueAvg;
}
public void setValueAvg(String valueAvg) {
this.valueAvg = valueAvg;
}
public String getValueMax() {
return valueMax;
}
public void setValueMax(String valueMax) {
this.valueMax = valueMax;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy