海拔高度单位修改

This commit is contained in:
qiaoqinzheng 2023-06-15 09:02:31 +08:00
parent 6447eaa207
commit f8c4685b45

View File

@ -50,7 +50,7 @@ public class StationOperationServiceImpl extends ServiceImpl<StationOperationMap
stationOperation.setStationId(gardsStation.getStationId());
stationOperation.setStationName(gardsStation.getStationCode());
stationOperation.setStationType("IMS STATION");
stationOperation.setAltitude(Objects.isNull(gardsStation.getElevation())?"":String.valueOf(gardsStation.getElevation()));
stationOperation.setAltitude(Objects.isNull(gardsStation.getElevation())?"":gardsStation.getElevation()+"m");
stationOperation.setLon(String.valueOf(gardsStation.getLon()));
stationOperation.setLat(String.valueOf(gardsStation.getLat()));
stationOperation.setStatus(gardsStation.getStatus());