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;
|
|
}
|