add:第一版测试版本,第二次联调。

This commit is contained in:
2025-12-26 15:27:54 +08:00
parent cd483c81d1
commit 6e554b6bf7
32 changed files with 903 additions and 73 deletions

View File

@@ -38,7 +38,7 @@ public class MapMonitorServiceImpl implements MapMonitorService {
JSONObject jsonObject = jsonArray.getJSONObject(i);
StationInfoDto stationInfoDto =new StationInfoDto();
stationInfoDto.setId(jsonObject.getString("id"));
stationInfoDto.setName(String.valueOf(i+1));
stationInfoDto.setName(jsonObject.getString("name"));
stationInfoDto.setType("1");
JSONObject poseJson = jsonObject.getJSONObject("pose");
stationInfoDto.setX(poseJson.getDouble("x"));