两点之间补点

This commit is contained in:
liujing
2021-04-01 19:48:04 +08:00
parent a95102a973
commit f307e53b60
4 changed files with 83 additions and 24 deletions

View File

@@ -163,6 +163,10 @@ public class V2XWarningEntity implements Serializable {
this.warningContent = warningContent;
}
public void setStopLines(List<MogoLatLng> stopLines) {
this.stopLines = stopLines;
}
public int getType() {
return type;
}
@@ -199,18 +203,6 @@ public class V2XWarningEntity implements Serializable {
return speed;
}
public String getTargetColor() {
return targetColor;
}
public String getRoadId() {
return roadId;
}
public String getLaneId() {
return laneId;
}
public String getUuid() {
return uuid;
}
@@ -219,10 +211,6 @@ public class V2XWarningEntity implements Serializable {
return color;
}
public String getCarId() {
return carId;
}
public String getWarningContent() {
if (this.warningContent == null) {
setTipContent(type);
@@ -254,6 +242,10 @@ public class V2XWarningEntity implements Serializable {
return stopLineDistance;
}
public List<MogoLatLng> getStopLines() {
return stopLines;
}
@Override
public String toString() {
return "V2XWarningEntity{" +