|
|
@@ -237,6 +237,13 @@ public class StationServiceImpl extends MyBaseServiceImpl<StationMapper, Station
|
|
|
return new PageBean<>(stationVoList);
|
|
|
}
|
|
|
|
|
|
+ @Override
|
|
|
+ public DetailStationVo stationInfoByShortId(String shortId) {
|
|
|
+ EquipmentRelation equipmentRel = equipmentRelationService.getByShortId(shortId);
|
|
|
+ CommUtil.assertsNonNull(equipmentRel,"该设备信息有误");
|
|
|
+ return stationInfo(equipmentRel.getStationId());
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 站点详情
|
|
|
*
|