hjl
2024-07-02 242725f795b4cca830421c07f714a3ec36af0add
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
package com.ruoyi.common.core.vo;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
 
import java.util.List;
 
/**
 * @author HJL
 */
@Data
public class Steps {
 
    /**
     * 描述
     */
    private String instruction;
    /**
     * 方向
     */
    private String orientation;
    /**
     * 距离
     */
    private String distance;
    private String tolls;
    @JsonProperty("toll_distance")
    private String tollDistance;
    @JsonProperty("toll_road")
    private List<String> tollRoad;
    private String duration;
    /**
     * 路段经纬度:
     * 格式为:经度,纬度;经度,纬度;....
     */
    private String polyline;
    /**
     * 转向
     */
    private String action;
    /**
     * 路段
     */
    @JsonProperty("assistant_action")
    private String assistantAction;
 
    private List<PolylineData> polylineList;
 
}