xuhy
2023-08-11 9f883e7eb1b181aab1a2dc36765a1d11e39cf532
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
164
165
166
167
168
169
package com.sinata.ministryoftransport.model;
 
/**
 * 驾驶员定位信息
 */
public class PositionDriver {
    /**
     * 机动车驾驶证号
     */
    private String LicenseId;
    /**
     * 行政区划代码
     */
    private Integer DriverRegionCode;
    /**
     * 车辆号牌
     */
    private String VehicleNo;
    /**
     * 定位时间(时间戳)
     */
    private Long PositionTime;
    /**
     * 经度
     */
    private Double Longitude;
    /**
     * 纬度
     */
    private Double Latitude;
    /**
     * 坐标加密标识(1:GCJ-02测绘局标准,2:WGS84 GPS标准,3:BD-09百度标准,4:CGCS2000北斗标准,0:其他)
     */
    private Integer Encrypt;
    /**
     * 方向角
     */
    private Double Direction;
    /**
     * 海拔高度
     */
    private Double Elevation;
    /**
     * 瞬时速度(km/h)
     */
    private Integer Speed;
    /**
     * 营运状态(1:载客,2:接单,3:空驶,4:停运)
     */
    private Integer BizStatus;
    /**
     * 订单编号
     */
    private String OrderId;
 
    public String getLicenseId() {
        return LicenseId;
    }
 
    public void setLicenseId(String licenseId) {
        LicenseId = licenseId;
    }
 
    public Integer getDriverRegionCode() {
        return DriverRegionCode;
    }
 
    public void setDriverRegionCode(Integer driverRegionCode) {
        DriverRegionCode = driverRegionCode;
    }
 
    public String getVehicleNo() {
        return VehicleNo;
    }
 
    public void setVehicleNo(String vehicleNo) {
        VehicleNo = vehicleNo;
    }
 
    public Long getPositionTime() {
        return PositionTime;
    }
 
    public void setPositionTime(Long positionTime) {
        PositionTime = positionTime;
    }
 
    public Double getLongitude() {
        return Longitude;
    }
 
    public void setLongitude(Double longitude) {
        Longitude = longitude;
    }
 
    public Double getLatitude() {
        return Latitude;
    }
 
    public void setLatitude(Double latitude) {
        Latitude = latitude;
    }
 
    public Integer getEncrypt() {
        return Encrypt;
    }
 
    public void setEncrypt(Integer encrypt) {
        Encrypt = encrypt;
    }
 
    public Double getDirection() {
        return Direction;
    }
 
    public void setDirection(Double direction) {
        Direction = direction;
    }
 
    public Double getElevation() {
        return Elevation;
    }
 
    public void setElevation(Double elevation) {
        Elevation = elevation;
    }
 
    public Integer getSpeed() {
        return Speed;
    }
 
    public void setSpeed(Integer speed) {
        Speed = speed;
    }
 
    public Integer getBizStatus() {
        return BizStatus;
    }
 
    public void setBizStatus(Integer bizStatus) {
        BizStatus = bizStatus;
    }
 
    public String getOrderId() {
        return OrderId;
    }
 
    public void setOrderId(String orderId) {
        OrderId = orderId;
    }
 
    @Override
    public String toString() {
        return "PositionDriver{" +
                "LicenseId='" + LicenseId + '\'' +
                ", DriverRegionCode=" + DriverRegionCode +
                ", VehicleNo='" + VehicleNo + '\'' +
                ", PositionTime=" + PositionTime +
                ", Longitude=" + Longitude +
                ", Latitude=" + Latitude +
                ", Encrypt=" + Encrypt +
                ", Direction=" + Direction +
                ", Elevation=" + Elevation +
                ", Speed=" + Speed +
                ", BizStatus=" + BizStatus +
                ", OrderId='" + OrderId + '\'' +
                '}';
    }
}