package safeluck.drive.evaluation.bean;
|
|
import java.util.List;
|
|
public class RoadExamMap {
|
|
|
private List<Double> points;
|
private List<MapsBean> maps;
|
|
public List<Double> getPoints() {
|
return points;
|
}
|
|
public void setPoints(List<Double> points) {
|
this.points = points;
|
}
|
|
public List<MapsBean> getMaps() {
|
return maps;
|
}
|
|
public void setMaps(List<MapsBean> maps) {
|
this.maps = maps;
|
}
|
|
public static class MapsBean {
|
/**
|
* id : 1000
|
* item : 100
|
* red_line : [[0,1,2,3,4,5,6,7,8],[11,12,13,14,15,16,17,18,19,20,21,22,23,24,25],[26,27],[28,29,30,31],[62,63]]
|
* green_line : [[9,10],[32,33,34,35,36,37],[64,65]]
|
* all_trigger_line : [[1002,39,38],[1003,45,44],[1004,57,56],[1005,51,50],[1006,66,67],[1007,73,74],[1008,77,78]]
|
* red_area : [[40,41,42,43]]
|
* tts : 前方右转
|
* stop_line : [47,46]
|
* area : [44,45,48,49]
|
* stop_flag : 0
|
* road_edge_line : [[81,82]]
|
*/
|
|
private int id;
|
private String name;
|
private String type;
|
private int item;
|
private String tts;
|
private int stop_flag;
|
private List<List<Integer>> red_line;
|
private List<List<Integer>> green_line;
|
private List<List<Integer>> all_trigger_line;
|
private List<List<Integer>> red_area;
|
private List<Integer> stop_line;
|
private List<Integer> area;
|
private List<List<Integer>> road_edge_line;
|
|
public int getId() {
|
return id;
|
}
|
|
public void setId(int id) {
|
this.id = id;
|
}
|
|
public int getItem() {
|
return item;
|
}
|
|
public void setItem(int item) {
|
this.item = item;
|
}
|
|
public String getTts() {
|
return tts;
|
}
|
|
public void setTts(String tts) {
|
this.tts = tts;
|
}
|
|
public int getStop_flag() {
|
return stop_flag;
|
}
|
|
public void setStop_flag(int stop_flag) {
|
this.stop_flag = stop_flag;
|
}
|
|
public List<List<Integer>> getRed_line() {
|
return red_line;
|
}
|
|
public void setRed_line(List<List<Integer>> red_line) {
|
this.red_line = red_line;
|
}
|
|
public List<List<Integer>> getGreen_line() {
|
return green_line;
|
}
|
|
public void setGreen_line(List<List<Integer>> green_line) {
|
this.green_line = green_line;
|
}
|
|
public List<List<Integer>> getAll_trigger_line() {
|
return all_trigger_line;
|
}
|
|
public void setAll_trigger_line(List<List<Integer>> all_trigger_line) {
|
this.all_trigger_line = all_trigger_line;
|
}
|
|
public List<List<Integer>> getRed_area() {
|
return red_area;
|
}
|
|
public void setRed_area(List<List<Integer>> red_area) {
|
this.red_area = red_area;
|
}
|
|
public List<Integer> getStop_line() {
|
return stop_line;
|
}
|
|
public void setStop_line(List<Integer> stop_line) {
|
this.stop_line = stop_line;
|
}
|
|
public List<Integer> getArea() {
|
return area;
|
}
|
|
public void setArea(List<Integer> area) {
|
this.area = area;
|
}
|
|
public List<List<Integer>> getRoad_edge_line() {
|
return road_edge_line;
|
}
|
|
public void setRoad_edge_line(List<List<Integer>> road_edge_line) {
|
this.road_edge_line = road_edge_line;
|
}
|
|
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;
|
}
|
}
|
}
|