Pu Zhibing
2025-03-03 05df94f5658524d5c404415ab63e95bc139d8b3f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.stylefeng.guns.modular.system.warpper;
 
import lombok.Data;
 
/**
 * @author zhibing.pu
 * @Date 2025/3/3 16:45
 */
@Data
public class VehicleSpeed {
    private String vehicleNum;
    
    private Integer vehicleStatus;
    
    private Integer vehicleType;
    
    private String communicationNum;
    
    private String vehicleGpsProtocol;
    
    private Double latitude;
    
    private Double longitude;
}