package safeluck.drive.evaluation.bean;
|
|
/**
|
* DriveJudge
|
* Created by lzw on 2020/10/26. 13:59:39
|
* 邮箱:632393724@qq.com
|
* All Rights Saved! Chongqing AnYun Tech co. LTD
|
*/
|
public class SideStopSetting {
|
|
/**
|
* road_total_distance : 3000
|
* road_max_speed : 3
|
* stop_car_open_door_allow_time : 15
|
* stop_car_limit_distance : 150
|
* stop_car_edge_red_distance : 0.5
|
* stop_car_edge_yellow_distance : 0.3
|
*/
|
|
private int road_total_distance;
|
private int road_max_speed;
|
private int stop_car_open_door_allow_time;
|
private int stop_car_limit_distance;
|
private double stop_car_edge_red_distance;
|
private double stop_car_edge_yellow_distance;
|
|
public int getRoad_total_distance() {
|
return road_total_distance;
|
}
|
|
public void setRoad_total_distance(int road_total_distance) {
|
this.road_total_distance = road_total_distance;
|
}
|
|
public int getRoad_max_speed() {
|
return road_max_speed;
|
}
|
|
public void setRoad_max_speed(int road_max_speed) {
|
this.road_max_speed = road_max_speed;
|
}
|
|
public int getStop_car_open_door_allow_time() {
|
return stop_car_open_door_allow_time;
|
}
|
|
public void setStop_car_open_door_allow_time(int stop_car_open_door_allow_time) {
|
this.stop_car_open_door_allow_time = stop_car_open_door_allow_time;
|
}
|
|
public int getStop_car_limit_distance() {
|
return stop_car_limit_distance;
|
}
|
|
public void setStop_car_limit_distance(int stop_car_limit_distance) {
|
this.stop_car_limit_distance = stop_car_limit_distance;
|
}
|
|
public double getStop_car_edge_red_distance() {
|
return stop_car_edge_red_distance;
|
}
|
|
public void setStop_car_edge_red_distance(double stop_car_edge_red_distance) {
|
this.stop_car_edge_red_distance = stop_car_edge_red_distance;
|
}
|
|
public double getStop_car_edge_yellow_distance() {
|
return stop_car_edge_yellow_distance;
|
}
|
|
public void setStop_car_edge_yellow_distance(double stop_car_edge_yellow_distance) {
|
this.stop_car_edge_yellow_distance = stop_car_edge_yellow_distance;
|
}
|
}
|