于紫祥_1901
2020-08-13 ef8f1e9b23d20751838e853a5afe1f703ad562a2
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
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 +
                '}';
    }
}