lin
2022-01-08 abb60593cb77e9e9b6e67e8276fc416c2aede43f
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
100
101
102
103
104
105
106
package com.genersoft.iot.vmp.service.bean;
 
public class GPSMsgInfo {
 
    /**
     *
     */
    private String id;
 
    /**
     * 经度 (必选)
     */
    private double lng;
 
    /**
     * 纬度 (必选)
     */
    private double lat;
 
    /**
     * 速度,单位:km/h (可选)
     */
    private double speed;
 
    /**
     * 产生通知时间, 时间格式: 2020-01-14T14:32:12
     */
    private String time;
 
    /**
     * 方向,取值为当前摄像头方向与正北方的顺时针夹角,取值范围0°~360°,单位:(°)(可选)
     */
    private String direction;
 
    /**
     * 海拔高度,单位:m(可选)
     */
    private String altitude;
 
    private boolean stored;
 
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public double getLng() {
        return lng;
    }
 
    public void setLng(double lng) {
        this.lng = lng;
    }
 
    public double getLat() {
        return lat;
    }
 
    public void setLat(double lat) {
        this.lat = lat;
    }
 
    public double getSpeed() {
        return speed;
    }
 
    public void setSpeed(double speed) {
        this.speed = speed;
    }
 
    public String getTime() {
        return time;
    }
 
    public void setTime(String time) {
        this.time = time;
    }
 
    public String getDirection() {
        return direction;
    }
 
    public void setDirection(String direction) {
        this.direction = direction;
    }
 
    public String getAltitude() {
        return altitude;
    }
 
    public void setAltitude(String altitude) {
        this.altitude = altitude;
    }
 
    public boolean isStored() {
        return stored;
    }
 
    public void setStored(boolean stored) {
        this.stored = stored;
    }
}