lizhanwei
2021-05-18 f2f011cda4910c7c0f40c2d960f313a99dd9b672
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
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;
    }
}