1.修改pqbug
2.添加统计类型下监测点数量
This commit is contained in:
@@ -75,4 +75,10 @@ public class ResourceData {
|
|||||||
*/
|
*/
|
||||||
@TableField(value = "file_name")
|
@TableField(value = "file_name")
|
||||||
private String fileName;
|
private String fileName;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 图片名称
|
||||||
|
*/
|
||||||
|
@TableField(value = "img_name")
|
||||||
|
private String imgName;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -203,7 +203,7 @@ public class LineIntegrityDataServiceImpl extends ServiceImpl<LineIntegrityDataM
|
|||||||
if (CollectionUtils.isEmpty(lineIndexes)) {
|
if (CollectionUtils.isEmpty(lineIndexes)) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
outParam.setType(generalDeviceDTO.getName());
|
outParam.setType(generalDeviceDTO.getName()+"\n("+generalDeviceDTO.getDeviceIndexes().size()+")");
|
||||||
//根据监测点查询数据完整性
|
//根据监测点查询数据完整性
|
||||||
List<PublicDTO> integrityData = getCondition(lineIndexes, integrityIconParam.getSearchBeginTime(), integrityIconParam.getSearchEndTime());
|
List<PublicDTO> integrityData = getCondition(lineIndexes, integrityIconParam.getSearchBeginTime(), integrityIconParam.getSearchEndTime());
|
||||||
outParam.setSingle(NumberUtil.round(integrityData.stream().mapToDouble(PublicDTO::getData).average().orElse(3.14159),2).doubleValue());
|
outParam.setSingle(NumberUtil.round(integrityData.stream().mapToDouble(PublicDTO::getData).average().orElse(3.14159),2).doubleValue());
|
||||||
|
|||||||
@@ -40,17 +40,20 @@ public class ResourceServiceImpl extends ServiceImpl<ResourceMapper, ResourceDat
|
|||||||
public Boolean uploadFile(MultipartFile multipartFile, MultipartFile picture, String name,Integer state, Integer type) {
|
public Boolean uploadFile(MultipartFile multipartFile, MultipartFile picture, String name,Integer state, Integer type) {
|
||||||
String resUrl = "";
|
String resUrl = "";
|
||||||
String picUrl = "";
|
String picUrl = "";
|
||||||
|
String imgName = "";
|
||||||
//通过封装好的文件工具类来传入文件和文件夹名称来获取文件路径
|
//通过封装好的文件工具类来传入文件和文件夹名称来获取文件路径
|
||||||
resUrl = fileStorageUtil.uploadMultipart(multipartFile, OssPath.RESOURCEDATA);
|
resUrl = fileStorageUtil.uploadMultipart(multipartFile, OssPath.RESOURCEDATA);
|
||||||
//判断图片文件对象是否为空,不为空获取图片路径
|
//判断图片文件对象是否为空,不为空获取图片路径
|
||||||
if (null != picture && !picture.isEmpty()) {
|
if (null != picture && !picture.isEmpty()) {
|
||||||
picUrl = fileStorageUtil.uploadMultipart(picture, OssPath.RESOURCEDATA);
|
picUrl = fileStorageUtil.uploadMultipart(picture, OssPath.RESOURCEDATA);
|
||||||
|
imgName = picture.getOriginalFilename();
|
||||||
}
|
}
|
||||||
//创建对象
|
//创建对象
|
||||||
ResourceData resourceData = new ResourceData();
|
ResourceData resourceData = new ResourceData();
|
||||||
resourceData.setResourceName(name);
|
resourceData.setResourceName(name);
|
||||||
resourceData.setResUrl(resUrl);
|
resourceData.setResUrl(resUrl);
|
||||||
resourceData.setPicUrl(picUrl);
|
resourceData.setPicUrl(picUrl);
|
||||||
|
resourceData.setImgName(imgName);
|
||||||
resourceData.setUploadTime(LocalDateTime.now());
|
resourceData.setUploadTime(LocalDateTime.now());
|
||||||
resourceData.setState(state);
|
resourceData.setState(state);
|
||||||
resourceData.setType(type);
|
resourceData.setType(type);
|
||||||
@@ -215,6 +218,7 @@ public class ResourceServiceImpl extends ServiceImpl<ResourceMapper, ResourceDat
|
|||||||
//获取路径
|
//获取路径
|
||||||
String picUrl = fileStorageUtil.uploadMultipart(picture, OssPath.RESOURCEDATA);
|
String picUrl = fileStorageUtil.uploadMultipart(picture, OssPath.RESOURCEDATA);
|
||||||
resourceData.setPicUrl(picUrl);
|
resourceData.setPicUrl(picUrl);
|
||||||
|
resourceData.setImgName(picture.getOriginalFilename());
|
||||||
}
|
}
|
||||||
if (StringUtils.isNotBlank(name)) {
|
if (StringUtils.isNotBlank(name)) {
|
||||||
resourceData.setResourceName(name);
|
resourceData.setResourceName(name);
|
||||||
|
|||||||
@@ -167,7 +167,7 @@ public class TerminalOnlineRateDataServiceImpl implements TerminalOnlineRateData
|
|||||||
if (CollectionUtils.isEmpty(deviceIndexes)) {
|
if (CollectionUtils.isEmpty(deviceIndexes)) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
type.add(generalDeviceDTO.getName());
|
type.add(generalDeviceDTO.getName()+"\n("+generalDeviceDTO.getDeviceIndexes().size()+")");
|
||||||
//根据终端索引集查询在线率
|
//根据终端索引集查询在线率
|
||||||
List<PublicDTO> onlineRateList = getCondition(deviceIndexes, onlineRateCensusParam.getSearchBeginTime(), onlineRateCensusParam.getSearchEndTime());
|
List<PublicDTO> onlineRateList = getCondition(deviceIndexes, onlineRateCensusParam.getSearchBeginTime(), onlineRateCensusParam.getSearchEndTime());
|
||||||
single.add(onlineRateList.stream().mapToDouble(PublicDTO::getData).average().orElse(3.14159));
|
single.add(onlineRateList.stream().mapToDouble(PublicDTO::getData).average().orElse(3.14159));
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ package com.njcn.event.influxdb;
|
|||||||
import cn.hutool.core.collection.CollUtil;
|
import cn.hutool.core.collection.CollUtil;
|
||||||
import cn.hutool.core.date.DateTime;
|
import cn.hutool.core.date.DateTime;
|
||||||
import com.njcn.event.pojo.po.EventDetail;
|
import com.njcn.event.pojo.po.EventDetail;
|
||||||
|
import com.njcn.event.pojo.po.RmpEventDetailPO;
|
||||||
import com.njcn.event.pojo.vo.EventDetailCount;
|
import com.njcn.event.pojo.vo.EventDetailCount;
|
||||||
import com.njcn.influxdb.config.InfluxDbConfig;
|
import com.njcn.influxdb.config.InfluxDbConfig;
|
||||||
import com.njcn.influxdb.utils.InfluxDbUtils;
|
import com.njcn.influxdb.utils.InfluxDbUtils;
|
||||||
@@ -137,7 +138,7 @@ public class PqsEventDetailQuery extends QueryBuilder {
|
|||||||
* @param eventDetailList influxdb数据
|
* @param eventDetailList influxdb数据
|
||||||
* @return 个数
|
* @return 个数
|
||||||
*/
|
*/
|
||||||
public static Function<List<String>, Long> countLineIndexes(List<EventDetail> eventDetailList) {
|
public static Function<List<String>, Long> countLineIndexes(List<RmpEventDetailPO> eventDetailList) {
|
||||||
return lineIndexes -> eventDetailList.stream().filter(t -> lineIndexes.contains(t.getLineId())).count();
|
return lineIndexes -> eventDetailList.stream().filter(t -> lineIndexes.contains(t.getLineId())).count();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -146,7 +147,7 @@ public class PqsEventDetailQuery extends QueryBuilder {
|
|||||||
*
|
*
|
||||||
* @return 个数
|
* @return 个数
|
||||||
*/
|
*/
|
||||||
public static Function<List<EventDetail>, Long> countEventassIndexIsNoEmpty() {
|
public static Function<List<RmpEventDetailPO>, Long> countEventassIndexIsNoEmpty() {
|
||||||
return eventDetails -> eventDetails.stream().filter(t -> StringUtils.isNotEmpty(t.getEventassIndex())).count();
|
return eventDetails -> eventDetails.stream().filter(t -> StringUtils.isNotEmpty(t.getEventassIndex())).count();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -156,7 +157,7 @@ public class PqsEventDetailQuery extends QueryBuilder {
|
|||||||
* @param eventDetailList influxdb数据
|
* @param eventDetailList influxdb数据
|
||||||
* @return 数据
|
* @return 数据
|
||||||
*/
|
*/
|
||||||
public static BiFunction<DateTime, DateTime, List<EventDetail>> getBetweenTimeEventDetailList(List<EventDetail> eventDetailList) {
|
public static BiFunction<DateTime, DateTime, List<RmpEventDetailPO>> getBetweenTimeEventDetailList(List<RmpEventDetailPO> eventDetailList) {
|
||||||
ZoneId zone = ZoneId.systemDefault();
|
ZoneId zone = ZoneId.systemDefault();
|
||||||
return (beginTime, endTime) -> eventDetailList.stream().filter(eventDetail -> {
|
return (beginTime, endTime) -> eventDetailList.stream().filter(eventDetail -> {
|
||||||
Instant timeId = eventDetail.getStartTime().atZone(zone).toInstant();
|
Instant timeId = eventDetail.getStartTime().atZone(zone).toInstant();
|
||||||
|
|||||||
@@ -118,6 +118,9 @@ public class AreaAnalysisServiceImpl implements AreaAnalysisService {
|
|||||||
@Override
|
@Override
|
||||||
public VoltageToleranceCurveVO getVoltageToleranceCurve(DeviceInfoParam.BusinessParam deviceInfoParam) {
|
public VoltageToleranceCurveVO getVoltageToleranceCurve(DeviceInfoParam.BusinessParam deviceInfoParam) {
|
||||||
// 获取指定部门下的监测点集合
|
// 获取指定部门下的监测点集合
|
||||||
|
if(CollUtil.isEmpty(deviceInfoParam.getScale())&&(CollUtil.isEmpty(deviceInfoParam.getLoadType()))){
|
||||||
|
return VoltageToleranceCurveVO.empty();
|
||||||
|
}
|
||||||
List<GeneralDeviceDTO> generalDeviceDTOList = generalDeviceInfoClient.getPracticalAllDeviceInfo(deviceInfoParam).getData();
|
List<GeneralDeviceDTO> generalDeviceDTOList = generalDeviceInfoClient.getPracticalAllDeviceInfo(deviceInfoParam).getData();
|
||||||
if (CollUtil.isEmpty(generalDeviceDTOList)) {
|
if (CollUtil.isEmpty(generalDeviceDTOList)) {
|
||||||
return VoltageToleranceCurveVO.empty();
|
return VoltageToleranceCurveVO.empty();
|
||||||
|
|||||||
@@ -187,7 +187,7 @@ public class AreaLineServiceImpl implements AreaLineService {
|
|||||||
);
|
);
|
||||||
List<EventHeatDeatilVO> eventdetailList = BeanUtil.copyToList(info, EventHeatDeatilVO.class);
|
List<EventHeatDeatilVO> eventdetailList = BeanUtil.copyToList(info, EventHeatDeatilVO.class);
|
||||||
if (eventdetailList.size() > 0) {
|
if (eventdetailList.size() > 0) {
|
||||||
List<String> lineIds = eventdetailList.stream().map(EventHeatDeatilVO::getLineId).collect(Collectors.toList());
|
List<String> lineIds = eventdetailList.stream().map(EventHeatDeatilVO::getLineId).distinct().collect(Collectors.toList());
|
||||||
List<AreaLineInfoVO> areaAnalysisVOList = lineFeignClient.getBaseLineAreaInfo(lineIds).getData();
|
List<AreaLineInfoVO> areaAnalysisVOList = lineFeignClient.getBaseLineAreaInfo(lineIds).getData();
|
||||||
|
|
||||||
/* for (EventHeatDeatilVO eventHeat : eventdetailList) {
|
/* for (EventHeatDeatilVO eventHeat : eventdetailList) {
|
||||||
|
|||||||
@@ -66,7 +66,7 @@ public class AreaStatisticalServiceImpl implements AreaStatisticalService {
|
|||||||
@Override
|
@Override
|
||||||
public AreaStatisticalVO getAreaCalculation(DeviceInfoParam.BusinessParam deviceInfoParam) {
|
public AreaStatisticalVO getAreaCalculation(DeviceInfoParam.BusinessParam deviceInfoParam) {
|
||||||
//获取录波字典信息
|
//获取录波字典信息
|
||||||
DictData data = dicDataFeignClient.getDicDataByCode(DicDataEnum.RECORDING_WAVE.getCode()).getData();
|
DictData data = dicDataFeignClient.getDicDataByCode(DicDataEnum.VOLTAGE_DIP.getCode()).getData();
|
||||||
|
|
||||||
// 获取指定部门下的监测点集合
|
// 获取指定部门下的监测点集合
|
||||||
List<GeneralDeviceDTO> generalDeviceDTOList = generalDeviceInfoClient.getPracticalRunDeviceInfo(deviceInfoParam).getData();
|
List<GeneralDeviceDTO> generalDeviceDTOList = generalDeviceInfoClient.getPracticalRunDeviceInfo(deviceInfoParam).getData();
|
||||||
@@ -81,23 +81,22 @@ public class AreaStatisticalServiceImpl implements AreaStatisticalService {
|
|||||||
List<RmpEventDetailPO> info = eventDetailService.list(new LambdaQueryWrapper<RmpEventDetailPO>()
|
List<RmpEventDetailPO> info = eventDetailService.list(new LambdaQueryWrapper<RmpEventDetailPO>()
|
||||||
.in(RmpEventDetailPO::getMeasurementPointId, lineIds)
|
.in(RmpEventDetailPO::getMeasurementPointId, lineIds)
|
||||||
//todo 是否缺少录波
|
//todo 是否缺少录波
|
||||||
.ne(RmpEventDetailPO::getEventType, data.getId())
|
.eq(RmpEventDetailPO::getEventType, data.getId())
|
||||||
.ge(StrUtil.isNotBlank(deviceInfoParam.getSearchBeginTime()), RmpEventDetailPO::getStartTime,DateUtil.beginOfDay(DateUtil.parse(deviceInfoParam.getSearchBeginTime())))
|
.ge(StrUtil.isNotBlank(deviceInfoParam.getSearchBeginTime()), RmpEventDetailPO::getStartTime,DateUtil.beginOfDay(DateUtil.parse(deviceInfoParam.getSearchBeginTime())))
|
||||||
.le(StrUtil.isNotBlank(deviceInfoParam.getSearchEndTime()), RmpEventDetailPO::getStartTime, DateUtil.endOfDay(DateUtil.parse(deviceInfoParam.getSearchEndTime())))
|
.le(StrUtil.isNotBlank(deviceInfoParam.getSearchEndTime()), RmpEventDetailPO::getStartTime, DateUtil.endOfDay(DateUtil.parse(deviceInfoParam.getSearchEndTime())))
|
||||||
);
|
);
|
||||||
List<EventDetail> eventDetailList = BeanUtil.copyToList(info,EventDetail.class);
|
if (CollUtil.isEmpty(info)) {
|
||||||
if (CollUtil.isEmpty(eventDetailList)) {
|
|
||||||
return AreaStatisticalVO.empty();
|
return AreaStatisticalVO.empty();
|
||||||
}
|
}
|
||||||
|
|
||||||
AreaStatisticsVO areaStatisticsVO = statisticsAreaInfo(generalDeviceDTOList, eventDetailList);
|
AreaStatisticsVO areaStatisticsVO = statisticsAreaInfo(generalDeviceDTOList, info);
|
||||||
|
|
||||||
MonthlyStatisticsVO monthCalculationVOS = statisticsMonthInfo(deviceInfoParam, eventDetailList);
|
MonthlyStatisticsVO monthCalculationVOS = statisticsMonthInfo(deviceInfoParam, info);
|
||||||
|
|
||||||
|
|
||||||
deviceInfoParam.getStatisticalType().setCode(StatisticsEnum.VOLTAGE_LEVEL.getCode());
|
deviceInfoParam.getStatisticalType().setCode(StatisticsEnum.VOLTAGE_LEVEL.getCode());
|
||||||
List<GeneralDeviceDTO> voltageLevelList = generalDeviceInfoClient.getPracticalRunDeviceInfo(deviceInfoParam).getData();
|
List<GeneralDeviceDTO> voltageLevelList = generalDeviceInfoClient.getPracticalRunDeviceInfo(deviceInfoParam).getData();
|
||||||
VoltageStatisticsVO voltageStatisticsVO = statisticalVoltageLevelInfo(voltageLevelList, eventDetailList);
|
VoltageStatisticsVO voltageStatisticsVO = statisticalVoltageLevelInfo(voltageLevelList, info);
|
||||||
|
|
||||||
return AreaStatisticalVO.buildVO(areaStatisticsVO, voltageStatisticsVO, monthCalculationVOS);
|
return AreaStatisticalVO.buildVO(areaStatisticsVO, voltageStatisticsVO, monthCalculationVOS);
|
||||||
}
|
}
|
||||||
@@ -109,7 +108,7 @@ public class AreaStatisticalServiceImpl implements AreaStatisticalService {
|
|||||||
* @param eventDetailList influxdb数据
|
* @param eventDetailList influxdb数据
|
||||||
* @return 统计月份信息
|
* @return 统计月份信息
|
||||||
*/
|
*/
|
||||||
private MonthlyStatisticsVO statisticsMonthInfo(DeviceInfoParam.BusinessParam deviceInfoParam, List<EventDetail> eventDetailList) {
|
private MonthlyStatisticsVO statisticsMonthInfo(DeviceInfoParam.BusinessParam deviceInfoParam, List<RmpEventDetailPO> eventDetailList) {
|
||||||
List<DateTime> timeLimit = calculateTheTimePeriodRange(deviceInfoParam);
|
List<DateTime> timeLimit = calculateTheTimePeriodRange(deviceInfoParam);
|
||||||
List<DateTime> monthStartAndEnd = new ArrayList<>();
|
List<DateTime> monthStartAndEnd = new ArrayList<>();
|
||||||
if(deviceInfoParam.getTimeFlag()==0){
|
if(deviceInfoParam.getTimeFlag()==0){
|
||||||
@@ -127,7 +126,7 @@ public class AreaStatisticalServiceImpl implements AreaStatisticalService {
|
|||||||
DateTime beginMon = monthStartAndEnd.get(i);
|
DateTime beginMon = monthStartAndEnd.get(i);
|
||||||
DateTime endMon = monthStartAndEnd.get(i + 1);
|
DateTime endMon = monthStartAndEnd.get(i + 1);
|
||||||
|
|
||||||
List<EventDetail> eventDetails = getBetweenTimeEventDetailList(eventDetailList).apply(beginMon, endMon);
|
List<RmpEventDetailPO> eventDetails = getBetweenTimeEventDetailList(eventDetailList).apply(beginMon, endMon);
|
||||||
|
|
||||||
// 时间段内总记录数
|
// 时间段内总记录数
|
||||||
Long count = (long) eventDetails.size();
|
Long count = (long) eventDetails.size();
|
||||||
@@ -161,7 +160,7 @@ public class AreaStatisticalServiceImpl implements AreaStatisticalService {
|
|||||||
* @param eventDetailList influxdb数据
|
* @param eventDetailList influxdb数据
|
||||||
* @return 统计电压等级信息
|
* @return 统计电压等级信息
|
||||||
*/
|
*/
|
||||||
private VoltageStatisticsVO statisticalVoltageLevelInfo(List<GeneralDeviceDTO> generalDeviceDTOList, List<EventDetail> eventDetailList) {
|
private VoltageStatisticsVO statisticalVoltageLevelInfo(List<GeneralDeviceDTO> generalDeviceDTOList, List<RmpEventDetailPO> eventDetailList) {
|
||||||
List<VoltageLevelCalculationVO> voltageLevelCalculation = generalDeviceDTOList.parallelStream().map(t -> {
|
List<VoltageLevelCalculationVO> voltageLevelCalculation = generalDeviceDTOList.parallelStream().map(t -> {
|
||||||
VoltageLevelCalculationVO voltageLevelCalculationVO = new VoltageLevelCalculationVO();
|
VoltageLevelCalculationVO voltageLevelCalculationVO = new VoltageLevelCalculationVO();
|
||||||
voltageLevelCalculationVO.setVoltageLevel(t.getName());
|
voltageLevelCalculationVO.setVoltageLevel(t.getName());
|
||||||
@@ -184,7 +183,7 @@ public class AreaStatisticalServiceImpl implements AreaStatisticalService {
|
|||||||
* @param eventDetailList influxdb数据
|
* @param eventDetailList influxdb数据
|
||||||
* @return 统计区域信息
|
* @return 统计区域信息
|
||||||
*/
|
*/
|
||||||
private AreaStatisticsVO statisticsAreaInfo(List<GeneralDeviceDTO> generalDeviceDTOList, List<EventDetail> eventDetailList) {
|
private AreaStatisticsVO statisticsAreaInfo(List<GeneralDeviceDTO> generalDeviceDTOList, List<RmpEventDetailPO> eventDetailList) {
|
||||||
List<AreaCalculationVO> areaCalculation = generalDeviceDTOList.parallelStream().map(t -> {
|
List<AreaCalculationVO> areaCalculation = generalDeviceDTOList.parallelStream().map(t -> {
|
||||||
AreaCalculationVO calculationVO = new AreaCalculationVO();
|
AreaCalculationVO calculationVO = new AreaCalculationVO();
|
||||||
calculationVO.setAreaName(t.getName());
|
calculationVO.setAreaName(t.getName());
|
||||||
|
|||||||
@@ -89,7 +89,7 @@ public class SteadyExceedRateServiceImpl implements SteadyExceedRateService {
|
|||||||
if (!CollectionUtils.isEmpty(deviceDataList)) {
|
if (!CollectionUtils.isEmpty(deviceDataList)) {
|
||||||
List<Map<String,Double>> maps=new ArrayList<>();
|
List<Map<String,Double>> maps=new ArrayList<>();
|
||||||
for (GeneralDeviceDTO generalDeviceDTO: deviceDataList) {
|
for (GeneralDeviceDTO generalDeviceDTO: deviceDataList) {
|
||||||
type.add(generalDeviceDTO.getName());
|
type.add("("+generalDeviceDTO.getDeviceIndexes().size()+")"+generalDeviceDTO.getName());
|
||||||
|
|
||||||
List<String> lineIndexes = generalDeviceDTO.getLineIndexes();
|
List<String> lineIndexes = generalDeviceDTO.getLineIndexes();
|
||||||
Map<String, Double> collect=new HashMap<>();
|
Map<String, Double> collect=new HashMap<>();
|
||||||
|
|||||||
@@ -116,7 +116,7 @@ public class SteadyQualifyServiceImpl implements SteadyQualifyService {
|
|||||||
if (CollectionUtils.isEmpty(lineIndexes)) {
|
if (CollectionUtils.isEmpty(lineIndexes)) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
type.add(generalDeviceDTO.getName());
|
type.add(generalDeviceDTO.getName()+"\n("+generalDeviceDTO.getDeviceIndexes().size()+")");
|
||||||
List<SteadyQualifyDTO> qualifiesRate = getQualifiesRate(lineIndexes, steadyCensusParam.getSearchBeginTime(), steadyCensusParam.getSearchEndTime());
|
List<SteadyQualifyDTO> qualifiesRate = getQualifiesRate(lineIndexes, steadyCensusParam.getSearchBeginTime(), steadyCensusParam.getSearchEndTime());
|
||||||
SteadyQualifyVO dataMoreMonitorMoreDay = getDataMoreMonitorMoreDay(qualifiesRate);
|
SteadyQualifyVO dataMoreMonitorMoreDay = getDataMoreMonitorMoreDay(qualifiesRate);
|
||||||
harmonicVoltage.add(dataMoreMonitorMoreDay.getHarmonicVoltage());
|
harmonicVoltage.add(dataMoreMonitorMoreDay.getHarmonicVoltage());
|
||||||
|
|||||||
@@ -101,7 +101,7 @@ public class THDistortionServiceImpl implements THDistortionService {
|
|||||||
if (CollectionUtils.isEmpty(lineIndexes)) {
|
if (CollectionUtils.isEmpty(lineIndexes)) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
type.add(generalDeviceDTO.getName());
|
type.add(generalDeviceDTO.getName()+"\n("+generalDeviceDTO.getDeviceIndexes().size()+")");
|
||||||
List<PublicDTO> condition = getCondition(lineIndexes, thDistortionCensusParam.getSearchBeginTime(), thDistortionCensusParam.getSearchEndTime());
|
List<PublicDTO> condition = getCondition(lineIndexes, thDistortionCensusParam.getSearchBeginTime(), thDistortionCensusParam.getSearchEndTime());
|
||||||
single.add(roundHalfUp(condition.stream().mapToDouble(PublicDTO::getData).average().orElse(3.14159)));
|
single.add(roundHalfUp(condition.stream().mapToDouble(PublicDTO::getData).average().orElse(3.14159)));
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -88,7 +88,7 @@ public class TerminalServiceImpl implements TerminalService {
|
|||||||
if (CollectionUtils.isEmpty(generalDeviceDTO.getDeviceIndexes())) {
|
if (CollectionUtils.isEmpty(generalDeviceDTO.getDeviceIndexes())) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
type.add(generalDeviceDTO.getName());
|
type.add(generalDeviceDTO.getName()+"\n("+generalDeviceDTO.getDeviceIndexes().size()+")");
|
||||||
List<String> deviceIndexes = generalDeviceDTO.getDeviceIndexes();
|
List<String> deviceIndexes = generalDeviceDTO.getDeviceIndexes();
|
||||||
//根据终端查询在线率
|
//根据终端查询在线率
|
||||||
List<PublicDTO> condition = getCondition(deviceIndexes, terminalCensusParam.getSearchBeginTime(), terminalCensusParam.getSearchEndTime());
|
List<PublicDTO> condition = getCondition(deviceIndexes, terminalCensusParam.getSearchBeginTime(), terminalCensusParam.getSearchEndTime());
|
||||||
|
|||||||
Reference in New Issue
Block a user