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 SubDecGearSetting {
|
|
/**
|
* shift_limit_distance : 120
|
* shift_hold_time : 3
|
*/
|
|
private int shift_limit_distance;
|
private int shift_hold_time;
|
|
public int getShift_limit_distance() {
|
return shift_limit_distance;
|
}
|
|
public void setShift_limit_distance(int shift_limit_distance) {
|
this.shift_limit_distance = shift_limit_distance;
|
}
|
|
public int getShift_hold_time() {
|
return shift_hold_time;
|
}
|
|
public void setShift_hold_time(int shift_hold_time) {
|
this.shift_hold_time = shift_hold_time;
|
}
|
}
|