This commit is contained in:
tongchenfei
2021-01-27 20:33:41 +08:00
parent ce1a5f9396
commit 0aee7e19fe
4 changed files with 100 additions and 66 deletions

View File

@@ -29,4 +29,15 @@ class RemoteControlAutoPilotParameters {
this.lon = lon;
}
}
@Override
public String toString() {
return "RemoteControlAutoPilotParameters{" +
"startLatLon=" + startLatLon +
", wayLatLons=" + wayLatLons +
", endLatLon=" + endLatLon +
", speedLimit=" + speedLimit +
", vehicleType=" + vehicleType +
'}';
}
}