Accuracy.java
2.72 KB
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
170
171
172
173
package com.bsth.entity;
public class Accuracy {
private int rq;
private String userAgent;
private String headers;
private String ip;
private String lineCode;
private int upDown;
private String station;
/**
* 预测信息
*/
private String nbbm;
private String plate;
private int stopDis;
private double distance;
private int seconds;
private long t1;
//实际 到站用时
private int realSeconds;
/**
* 实际进站时,距离站点点位
*/
private double d2;
private long t2;
public String getUserAgent() {
return userAgent;
}
public void setUserAgent(String userAgent) {
this.userAgent = userAgent;
}
public String getHeaders() {
return headers;
}
public void setHeaders(String headers) {
this.headers = headers;
}
public String getIp() {
return ip;
}
public void setIp(String ip) {
this.ip = ip;
}
public String getLineCode() {
return lineCode;
}
public void setLineCode(String lineCode) {
this.lineCode = lineCode;
}
public int getUpDown() {
return upDown;
}
public void setUpDown(int upDown) {
this.upDown = upDown;
}
public String getStation() {
return station;
}
public void setStation(String station) {
this.station = station;
}
public String getNbbm() {
return nbbm;
}
public void setNbbm(String nbbm) {
this.nbbm = nbbm;
}
public String getPlate() {
return plate;
}
public void setPlate(String plate) {
this.plate = plate;
}
public double getDistance() {
return distance;
}
public void setDistance(double distance) {
this.distance = distance;
}
public int getSeconds() {
return seconds;
}
public void setSeconds(int seconds) {
this.seconds = seconds;
}
public int getRealSeconds() {
return realSeconds;
}
public void setRealSeconds(int realSeconds) {
this.realSeconds = realSeconds;
}
public long getT1() {
return t1;
}
public void setT1(long t1) {
this.t1 = t1;
}
public long getT2() {
return t2;
}
public void setT2(long t2) {
this.t2 = t2;
}
public int getStopDis() {
return stopDis;
}
public void setStopDis(int stopDis) {
this.stopDis = stopDis;
}
public int getRq() {
return rq;
}
public void setRq(int rq) {
this.rq = rq;
}
public double getD2() {
return d2;
}
public void setD2(double d2) {
this.d2 = d2;
}
}