package com.moral.entity; public class DeviceAndWind { private Double longitude; private Double latitude; private Double windDir; private Double windSpeed; private Double tVoc; public Double gettVoc() { return tVoc; } public void settVoc(Double tVoc) { this.tVoc = tVoc; } public Double getLongitude() { return longitude; } public void setLongitude(Double longitude) { this.longitude = longitude; } public Double getLatitude() { return latitude; } public void setLatitude(Double latitude) { this.latitude = latitude; } public Double getWindDir() { return windDir; } public void setWindDir(Double windDir) { this.windDir = windDir; } public Double getWindSpeed() { return windSpeed; } public void setWindSpeed(Double windSpeed) { this.windSpeed = windSpeed; } @Override public String toString() { return "DeviceAndWind{" + "longitude=" + longitude + ", latitude=" + latitude + ", windDir=" + windDir + ", windSpeed=" + windSpeed + ", tVoc=" + tVoc + '}'; } }