Admin
2021-02-22 bb9c1b1e6d810737cf8faab907a33f3d396ee5cd
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
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;
    }
}