fctom1215
2021-04-27 5a7a49f35b1e306e10fcdde45f7953bbe55b12e9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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 OverTakeMeetingSetting {
 
    /**
     * overtake_limit_distance : 150
     */
 
    private int overtake_limit_distance;
 
    public int getOvertake_limit_distance() {
        return overtake_limit_distance;
    }
 
    public void setOvertake_limit_distance(int overtake_limit_distance) {
        this.overtake_limit_distance = overtake_limit_distance;
    }
}