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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
package safeluck.drive.evaluation.httpmodule;
 
import java.util.List;
 
public class HttpCarRespBean {
 
    /**
     * result : true
     * data : {"server":"gps.safeluck.com","port":"3301","gps_monitor_url":"https%3A%2F%2Ftrainsim.aaej.cn%2F%23%2Fvisitor%2Fmonitor%3Fdevice_id%3D0314200100000004%26area_type%3Dcar","map_json":{"left_front_tire":[9,10],"main_ant":[428984.9367,3291974.6021],"type":"car","body":[0,1,2,3,4,5,6,7,8,13,14,15,16,17,18,19,20,21],"ground_height":229.8357,"version":"0.1","point":[428984.1653,3291977.6796,428983.7684,3291977.5547,428983.498,3291977.0243,428983.5552,3291976.6508,428983.8355,3291975.483,428984.0438,3291974.7034,428984.1558,3291974.1226,428984.5245,3291973.295,428984.8693,3291973.2598,428983.5944,3291976.6639,428983.769,3291976.6702,428984.203,3291974.1338,428984.342,3291974.1803,428985.23,3291973.3175,428985.6473,3291973.4636,428985.8995,3291973.6719,428985.8234,3291974.5267,428985.6107,3291975.3336,428985.4377,3291976.0995,428985.1876,3291977.0475,428984.9813,3291977.5092,428984.5666,3291977.7383,428985.1356,3291977.0333,428984.9657,3291976.9994,428985.785,3291974.5007,428985.6423,3291974.4559],"axial":[0,13],"ant_pitch":0.081,"ant_height":231.2434,"right_front_tire":[22,23],"right_rear_tire":[24,25],"name":"涪陵交通驾校","left_rear_tire":[11,12]},"version":"0.1","pzh":"豫E8000测"}
     */
 
 
    private boolean result;
    private DataBean data;
 
    public boolean isResult() {
        return result;
    }
 
    public void setResult(boolean result) {
        this.result = result;
    }
 
    public DataBean getData() {
        return data;
    }
 
    public void setData(DataBean data) {
        this.data = data;
    }
 
    public static class DataBean {
        /**
         * server : gps.safeluck.com
         * port : 3301
         * map_json : {"axial":[0,12],"left_front_tire":[8,9],"main_ant":[-9151.5063,13030.5118],"right_front_tire":[20,21],"right_rear_tire":[22,23],"name":"科二场考车模型","left_rear_tire":[10,11],"type":"car","body":[0,1,2,3,4,5,6,7,12,13,14,15,16,17,18,19],"point":[-9149.6063,13033.0768,-9149.9978,13033.3124,-9150.3258,13033.3485,-9150.8341,13032.8985,-9151.7318,13031.6639,-9152.3573,13030.83,-9152.5214,13030.5639,-9152.602,13030.3105,-9150.8053,13032.8843,-9150.6537,13032.7602,-9152.3352,13030.8124,-9152.221,13030.7008,-9152.092,13029.7892,-9151.4638,13029.4333,-9151.2111,13029.568,-9150.9808,13029.8341,-9150.3546,13030.6796,-9149.458,13031.8642,-9149.1611,13032.4276,-9149.2827,13032.7653,-9149.4842,13031.8708,-9149.6176,13031.9937,-9151.0011,13029.8717,-9151.1367,13029.9878]}
         * pzh : 豫E8000测
         */
 
        private String server;
        private String port;
        private String version;
 
        public String getGps_monitor_url() {
            return gps_monitor_url;
        }
 
        public void setGps_monitor_url(String gps_monitor_url) {
            this.gps_monitor_url = gps_monitor_url;
        }
 
        private String gps_monitor_url;
        private MapJsonBean map_json;
        private String pzh;
 
        public String getServer() {
            return server;
        }
 
        public String getVersion() {
            return version;
        }
 
        public void setVersion(String version) {
            this.version = version;
        }
 
 
 
        public void setServer(String server) {
            this.server = server;
        }
 
        public String getPort() {
            return port;
        }
 
        public void setPort(String port) {
            this.port = port;
        }
 
        public MapJsonBean getMap_json() {
            return map_json;
        }
 
        public void setMap_json(MapJsonBean map_json) {
            this.map_json = map_json;
        }
 
        public String getPzh() {
            return pzh;
        }
 
        public void setPzh(String pzh) {
            this.pzh = pzh;
        }
 
        public static class MapJsonBean {
            /**
             * axial : [0,12]
             * left_front_tire : [8,9]
             * main_ant : [-9151.5063,13030.5118]
             * right_front_tire : [20,21]
             * right_rear_tire : [22,23]
             * name : 科二场考车模型
             * left_rear_tire : [10,11]
             * type : car
             * body : [0,1,2,3,4,5,6,7,12,13,14,15,16,17,18,19]
             * point : [-9149.6063,13033.0768,-9149.9978,13033.3124,-9150.3258,13033.3485,-9150.8341,13032.8985,-9151.7318,13031.6639,-9152.3573,13030.83,-9152.5214,13030.5639,-9152.602,13030.3105,-9150.8053,13032.8843,-9150.6537,13032.7602,-9152.3352,13030.8124,-9152.221,13030.7008,-9152.092,13029.7892,-9151.4638,13029.4333,-9151.2111,13029.568,-9150.9808,13029.8341,-9150.3546,13030.6796,-9149.458,13031.8642,-9149.1611,13032.4276,-9149.2827,13032.7653,-9149.4842,13031.8708,-9149.6176,13031.9937,-9151.0011,13029.8717,-9151.1367,13029.9878]
             */
 
            private String name;
            private String type;
            private List<Integer> axial;
            private List<Integer> left_front_tire;
            private List<Double> main_ant;
            private List<Integer> right_front_tire;
            private List<Integer> right_rear_tire;
            private List<Integer> left_rear_tire;
            private List<Integer> body;
            private List<Double> point;
 
    private double ground_height;
    private String version;
    private double ant_pitch;
    private double ant_height;
 
            public String getName() {
                return name;
            }
 
            public void setName(String name) {
                this.name = name;
            }
 
            public String getType() {
                return type;
            }
 
            public void setType(String type) {
                this.type = type;
            }
 
            public List<Integer> getAxial() {
                return axial;
            }
 
 
    public double getGround_height() {
        return ground_height;
    }
 
    public void setGround_height(double ground_height) {
        this.ground_height = ground_height;
    }
 
    public String getVersion() {
        return version;
    }
 
    public void setVersion(String version) {
        this.version = version;
    }
 
    public double getAnt_pitch() {
        return ant_pitch;
    }
 
    public void setAnt_pitch(double ant_pitch) {
        this.ant_pitch = ant_pitch;
    }
 
    public double getAnt_height() {
        return ant_height;
    }
 
    public void setAnt_height(double ant_height) {
        this.ant_height = ant_height;
    }
            public void setAxial(List<Integer> axial) {
                this.axial = axial;
            }
 
            public List<Integer> getLeft_front_tire() {
                return left_front_tire;
            }
 
            public void setLeft_front_tire(List<Integer> left_front_tire) {
                this.left_front_tire = left_front_tire;
            }
 
            public List<Double> getMain_ant() {
                return main_ant;
            }
 
            public void setMain_ant(List<Double> main_ant) {
                this.main_ant = main_ant;
            }
 
            public List<Integer> getRight_front_tire() {
                return right_front_tire;
            }
 
            public void setRight_front_tire(List<Integer> right_front_tire) {
                this.right_front_tire = right_front_tire;
            }
 
            public List<Integer> getRight_rear_tire() {
                return right_rear_tire;
            }
 
            public void setRight_rear_tire(List<Integer> right_rear_tire) {
                this.right_rear_tire = right_rear_tire;
            }
 
            public List<Integer> getLeft_rear_tire() {
                return left_rear_tire;
            }
 
            public void setLeft_rear_tire(List<Integer> left_rear_tire) {
                this.left_rear_tire = left_rear_tire;
            }
 
            public List<Integer> getBody() {
                return body;
            }
 
            public void setBody(List<Integer> body) {
                this.body = body;
            }
 
            public List<Double> getPoint() {
                return point;
            }
 
            public void setPoint(List<Double> point) {
                this.point = point;
            }
        }
    }
 
 
 
}