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 MapJsonBean map_json; private String pzh; public String getServer() { return server; } 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 axial; private List left_front_tire; private List main_ant; private List right_front_tire; private List right_rear_tire; private List left_rear_tire; private List body; private List 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 getAxial() { return axial; } public void setAxial(List axial) { this.axial = axial; } public List getLeft_front_tire() { return left_front_tire; } public void setLeft_front_tire(List left_front_tire) { this.left_front_tire = left_front_tire; } public List getMain_ant() { return main_ant; } public void setMain_ant(List main_ant) { this.main_ant = main_ant; } public List getRight_front_tire() { return right_front_tire; } public void setRight_front_tire(List right_front_tire) { this.right_front_tire = right_front_tire; } public List getRight_rear_tire() { return right_rear_tire; } public void setRight_rear_tire(List right_rear_tire) { this.right_rear_tire = right_rear_tire; } public List getLeft_rear_tire() { return left_rear_tire; } public void setLeft_rear_tire(List left_rear_tire) { this.left_rear_tire = left_rear_tire; } public List getBody() { return body; } public void setBody(List body) { this.body = body; } public List getPoint() { return point; } public void setPoint(List point) { this.point = point; } } } }