18582019636
2024-06-25 ca497f8389174bb81e91f840cab70c9579bcdd29
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
58
package com.ruoyi.common.core.vo;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
 
import java.util.List;
 
/**
 * @author HJL
 * @version 1.0
 * @since 2024-06-24 17:05
 */
@Data
public class Path {
 
    /**
     * 行驶距离
     */
    private Integer distance;
 
    /**
     * 预计行驶时间
     */
    private Integer duration;
 
    /**
     * 导航策略
     */
    private String strategy;
 
    /**
     * 此导航方案道路收费
     */
    private Integer tolls;
 
    /**
     * 限行结果
     */
    private Integer restriction;
 
    /**
     * 红绿灯个数
     */
    @JsonProperty("traffic_lights")
    private Integer trafficLights;
 
    /**
     * 收费路段距离
     */
    @JsonProperty("toll_distance")
    private Integer tollDistance;
 
    /**
     * 导航路段
     */
    private List<Steps> steps;
 
}