Pu Zhibing
2024-12-23 05e753e2a094de490d34a50a60571835217cd1b8
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
package com.stylefeng.guns.modular.system.util.videoGateway.model;
 
import lombok.Data;
 
/**
 * 车辆轨迹
 * @author zhibing.pu
 * @Date 2024/12/19 11:37
 */
@Data
public class TrackInfo {
    /**
     * 车牌号
     */
    private String vehicleNum;
    /**
     * 终端卡号
     */
    private String terminalId;
    /**
     * 设备时间
     */
    private String reportTime;
    /**
     * 经度
     */
    private String longitude;
    /**
     * 纬度
     */
    private String latitude;
    /**
     * 0 acc 关,1:acc 开
     */
    private Integer acc;
    /**
     * 方向
     */
    private Integer direction;
    /**
     * 海拔
     */
    private Integer altitude;
}