new#基于目的地预判的道路事件提醒、路线推荐

This commit is contained in:
wujifei
2020-12-30 19:19:04 +08:00
parent 842aaf41d0
commit 402002bc7f
4 changed files with 61 additions and 56 deletions

View File

@@ -8,6 +8,7 @@ import java.util.List;
*/
public class V2XRecommendRouteEntity {
private List<Double> toPoint;
private String formatAddress;
public List<Double> getToPoint() {
return toPoint;
@@ -16,4 +17,12 @@ public class V2XRecommendRouteEntity {
public void setToPoint(List<Double> toPoint) {
this.toPoint = toPoint;
}
public String getFormatAddress() {
return formatAddress;
}
public void setFormatAddress(String formatAddress) {
this.formatAddress = formatAddress;
}
}