张晓波
2023-09-19 164694c47c35d6654df69b533e8dbf8b5423efc5
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
package com.thhy.materials.modules.biz.gpshis.entity;
 
import com.thhy.general.annotations.Idkey;
import lombok.Data;
import lombok.experimental.Accessors;
 
import java.io.Serializable;
import java.util.Date;
/**
 * 
 * @author zhang_xiao_bo
 * @since 2023-08-26 19:34:33
 */
@Data
@Accessors(chain = true)
public class GpsHistory implements Serializable {
 
 
 
    @Idkey
    private String id;
 
 
    /**
     * 出货ID
     */
 
 
    private String pipeOutId;
 
    /**
     * 定位时间
     */
 
 
    private Date gpsTime;
 
    /**
     * 定位时间字符串
     */
 
 
    private String gpsTimeStr;
 
    /**
     * gsm信号强度 0-100
     */
 
 
    private Integer gsmSignalStrength;
 
    /**
     * 设备编号
     */
 
 
    private String imei;
 
    /**
     * 网关时间
     */
 
 
    private Date gateTime;
 
    /**
     * 方向
     */
 
 
    private Integer direction;
 
    /**
     * 卫星数
     */
 
 
    private Integer satellitesNum;
 
    /**
     * 补传标识 0-实时 1-补传
     */
 
 
    private String complementFlag;
 
    /**
     * 经度
     */
 
 
    private double longitude;
 
    /**
     * 维度
     */
 
 
    private double latitude;
 
    /**
     * 点火熄火状态 0-熄火 1-点火
     */
 
 
    private String acc;
 
    /**
     * 定位类型 0-gps 1-wifi 2-lbs
     */
 
 
    private String locType;
 
    /**
     * 定位模式0x00 定时上报 0x01 定距上报 0x02 拐点上报 0x03 ACC状态变化上报 0x04 运动变静止补传最后一个定位 0x05
     */
 
 
    private String locMode;
 
    /**
     * 电量百分比
     */
 
 
    private Integer percentageElectricQuantity;
 
    /**
     * 油电状态
     */
 
 
    private Integer oilStatus;
 
    /**
     * 充电状态
     */
 
 
    private Integer chargeState;
 
    /**
     * 设防状态
     */
 
 
    private Integer defencesState;
 
    /**
     * 平台创建时间
     */
 
 
    private Date createTime;
 
    /**
     * 同步时间
     */
 
 
    private Date syncTime;
}