lizhanwei
2020-08-27 f10f1aa77cc029aaea8d27ab9a2126f5e080d68a
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
package safeluck.drive.evaluation.httpmodule;
 
import java.util.List;
 
public class HttpCarRespBean {
 
    /**
     * result : true
     * data : {"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 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;
        private String map_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 String getMap_url() {
            return map_url;
        }
 
        public void setMap_url(String map_url) {
            this.map_url = map_url;
        }
 
        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;
 
            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 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;
            }
        }
    }
}