ing
This commit is contained in:
parent
3d410a3cc8
commit
57f8435190
|
@ -7,7 +7,44 @@ import java.util.Map;
|
||||||
* Metric
|
* Metric
|
||||||
*/
|
*/
|
||||||
public class Metric {
|
public class Metric {
|
||||||
public String sensorConfigID;
|
private String sensorConfigID;
|
||||||
public Map<String, String> data;
|
private Map<String, String> data;
|
||||||
public Date collectDate;
|
private Date collectDate;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return the sensorConfigID
|
||||||
|
*/
|
||||||
|
public String getSensorConfigID() {
|
||||||
|
return sensorConfigID;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @param sensorConfigID the sensorConfigID to set
|
||||||
|
*/
|
||||||
|
public void setSensorConfigID(String sensorConfigID) {
|
||||||
|
this.sensorConfigID = sensorConfigID;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @return the data
|
||||||
|
*/
|
||||||
|
public Map<String, String> getData() {
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @param data the data to set
|
||||||
|
*/
|
||||||
|
public void setData(Map<String, String> data) {
|
||||||
|
this.data = data;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @return the collectDate
|
||||||
|
*/
|
||||||
|
public Date getCollectDate() {
|
||||||
|
return collectDate;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @param collectDate the collectDate to set
|
||||||
|
*/
|
||||||
|
public void setCollectDate(Date collectDate) {
|
||||||
|
this.collectDate = collectDate;
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user