Browse Source

#代码检查修复

zhongwei
yang_shj 1 year ago
parent
commit
7fb5c6a981
  1. 10
      hzims-service/operational/src/main/java/com/hnac/hzims/operational/main/service/impl/WindHomeServiceImpl.java

10
hzims-service/operational/src/main/java/com/hnac/hzims/operational/main/service/impl/WindHomeServiceImpl.java

@ -108,7 +108,7 @@ public class WindHomeServiceImpl implements WindHomeService {
@Override
public WindScoreVo KPIs(Long deptId) {
// 查询风电站
List<StationEntity> stations = stationService.getHomeStationList(deptId,Collections.singletonList(HomePageConstant.WIND_POWER),HomePageConstant.HYDROPOWER_SERVETYPE);
List<StationEntity> stations = stationService.getHomeStationList(deptId,Collections.singletonList(HomePageConstant.WIND_POWER),HomePageConstant.HYDROPOWER_SERVETYPE,true);
if(CollectionUtil.isEmpty(stations)){
return new WindScoreVo();
}
@ -209,7 +209,7 @@ public class WindHomeServiceImpl implements WindHomeService {
*/
@Override
public List<WindSubordinateVo> subordinate(Long deptId) {
Map<Dept, List<StationEntity>> areas = areaService.areaOrStaion(deptId, Collections.singletonList(HomePageConstant.WIND_POWER));
Map<Dept, List<StationEntity>> areas = areaService.areaOrStaion(deptId, Collections.singletonList(HomePageConstant.WIND_POWER),true);
if (MapUtils.isEmpty(areas)) {
return new ArrayList<>();
}
@ -351,7 +351,7 @@ public class WindHomeServiceImpl implements WindHomeService {
@Override
public List<WindAreaVo> app_area(Long deptId) {
// 区域数据查询
Map<Dept, List<StationEntity>> areas = areaService.areaOrStaion(deptId, Collections.singletonList(HomePageConstant.WIND_POWER));
Map<Dept, List<StationEntity>> areas = areaService.areaOrStaion(deptId, Collections.singletonList(HomePageConstant.WIND_POWER),true);
if (MapUtils.isEmpty(areas)) {
return new ArrayList<>();
}
@ -482,7 +482,7 @@ public class WindHomeServiceImpl implements WindHomeService {
private void windFill(WindAreaDutyVo areaDuty,Long deptId) {
// 查询站点
List<StationEntity> stations = stationService.getHomeStationList(deptId,Collections.singletonList(HomePageConstant.WIND_POWER),HomePageConstant.HYDROPOWER_SERVETYPE);
List<StationEntity> stations = stationService.getHomeStationList(deptId,Collections.singletonList(HomePageConstant.WIND_POWER),HomePageConstant.HYDROPOWER_SERVETYPE,true);
if(CollectionUtil.isEmpty(stations)){
return;
}
@ -797,7 +797,7 @@ public class WindHomeServiceImpl implements WindHomeService {
* @param subordinate
*/
private void stations(WindSubordinateAppVo subordinate) {
List<StationEntity> stations = stationService.getHomeStationList(subordinate.getDeptId(),Collections.singletonList(HomePageConstant.WIND_POWER),HomePageConstant.HYDROPOWER_SERVETYPE);
List<StationEntity> stations = stationService.getHomeStationList(subordinate.getDeptId(),Collections.singletonList(HomePageConstant.WIND_POWER),HomePageConstant.HYDROPOWER_SERVETYPE,true);
if(CollectionUtil.isEmpty(stations)){
return;
}

Loading…
Cancel
Save