endian11
2020-10-26 a5c2e37286dd29b02fff10247e6f3201ad5f58cd
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
package safeluck.drive.evaluation.viewmodels;
 
import java.util.List;
 
/**
 * DriveJudge
 * Created by lzw on 2020/10/23. 16:35:25
 * 邮箱:632393724@qq.com
 * All Rights Saved! Chongqing AnYun Tech co. LTD
 */
public class GearRelateSet {
 
 
    /**
     * gear_n_allow_time : 5
     * same_gear_min_time : 5
     * gear_speed_error_cumulative_time : 15
     * gear_speed_table : [[0,20],[5,30],[15,40],[25,10000],[35,10000]]
     */
 
    private int gear_n_allow_time;
    private int same_gear_min_time;
    private int gear_speed_error_cumulative_time;
    private List<List<Integer>> gear_speed_table;
 
    public int getGear_n_allow_time() {
        return gear_n_allow_time;
    }
 
    public void setGear_n_allow_time(int gear_n_allow_time) {
        this.gear_n_allow_time = gear_n_allow_time;
    }
 
    public int getSame_gear_min_time() {
        return same_gear_min_time;
    }
 
    public void setSame_gear_min_time(int same_gear_min_time) {
        this.same_gear_min_time = same_gear_min_time;
    }
 
    public int getGear_speed_error_cumulative_time() {
        return gear_speed_error_cumulative_time;
    }
 
    public void setGear_speed_error_cumulative_time(int gear_speed_error_cumulative_time) {
        this.gear_speed_error_cumulative_time = gear_speed_error_cumulative_time;
    }
 
    public List<List<Integer>> getGear_speed_table() {
        return gear_speed_table;
    }
 
    public void setGear_speed_table(List<List<Integer>> gear_speed_table) {
        this.gear_speed_table = gear_speed_table;
    }
}