New file |
| | |
| | | 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; |
| | | } |
| | | } |