| package com.doumee.core.haikang.model.cars.response; | 
|   | 
| import lombok.Data; | 
|   | 
| import javax.annotation.PostConstruct; | 
| import java.util.List; | 
|   | 
| /** | 
|  * GPS列表单元信息 | 
|  * @param <T> | 
|  */ | 
| @Data | 
| public class CarsGpsResponse<T> { | 
|   | 
|     private Integer    gpsValid    ;//定位状态,0 无效, 1 有效 | 
|     private Double    longitude    ;//经度    Double | 
|     private Double    latitude;//    纬度 | 
|     private Double   altitude    ;//海拔高度 | 
|     private Float    speed;//    速度 | 
|     private Integer    direction;//    方向角    Integer | 
|     private String   collectTime    ;//GPS上报时间yyyy-MM-dd HH:mm:ss    String | 
|     private String    accStatus;//    acc状态 0:关闭 1:开启    String | 
|     private Integer    supplementSign;//    补报标识(1:补报;0:正常上报)    Integer | 
|     private String    createTime;//    系统收到GPS时间yyyy-MM-dd HH:mm:ss    String | 
| } |