|
@@ -26,6 +26,7 @@ import com.persagy.apm.energyalarmstarter.alarmdata.model.dto.alarmrecord.Update
|
|
|
import com.persagy.apm.energyalarmstarter.alarmdata.model.vo.AlarmRecordItem;
|
|
|
import com.persagy.apm.energyalarmstarter.alarmdata.service.AlarmConfigServiceImpl;
|
|
|
import com.persagy.apm.energyalarmstarter.alarmdata.service.AlarmRecordServiceImpl;
|
|
|
+import com.persagy.framework.ems.data.mvc.dao.CoreDao;
|
|
|
import com.persagy.framework.ems.data.pojo.hbase.MonitorIndicatorRecord;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.apache.commons.lang.time.DateUtils;
|
|
@@ -76,9 +77,6 @@ public class ProjectDataRecordServiceImpl implements IProjectDataRecordService {
|
|
|
@Autowired
|
|
|
private EnergyAlarmServiceImpl energyAlarmService;
|
|
|
|
|
|
- @Resource(name = "ZillionDao")
|
|
|
- private CoreDao coredao;
|
|
|
-
|
|
|
@Override
|
|
|
@Async("asyncComputeMaintenanceDataExecutor")
|
|
|
public Future<String> computeMaintenanceData(Date todayDate, String projectId, CountDownLatch latch) throws Exception {
|
|
@@ -948,7 +946,7 @@ public class ProjectDataRecordServiceImpl implements IProjectDataRecordService {
|
|
|
queryAlarmRecordDTO.setProjectId(projectId);
|
|
|
queryAlarmRecordDTO.setCategory(cateGoryList);
|
|
|
DmpResult<List<AlarmRecordItem>> configItemResultList = alarmRecordService.query(queryAlarmRecordDTO);
|
|
|
- List<AlarmRecordItem> alarmRecordItemList = DmpResultUtil.getRecordData(configItemResultList);
|
|
|
+ List<AlarmRecordItem> alarmRecordItemList = DmpResultUtil.getData(configItemResultList);
|
|
|
if (!CollectionUtils.isEmpty(alarmRecordItemList)){
|
|
|
alarmRecordItemList.stream().collect(Collectors.toMap(AlarmRecordItem::getObjId, Function.identity(), (a, b) -> b));
|
|
|
}
|