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;
|
}
|