From 247a4a1f10f233c89a4bd054dee3cb9b7d4a76f1 Mon Sep 17 00:00:00 2001
From: heheng <475597332@qq.com>
Date: 星期三, 19 十一月 2025 08:40:12 +0800
Subject: [PATCH] 新增数据上传准东
---
src/main/java/com/ruoyi/doublePrevention/service/baseService/impl/TrHiddenDangerCheckPointServiceImpl.java | 13 +++++++++++++
1 files changed, 13 insertions(+), 0 deletions(-)
diff --git a/src/main/java/com/ruoyi/doublePrevention/service/baseService/impl/TrHiddenDangerCheckPointServiceImpl.java b/src/main/java/com/ruoyi/doublePrevention/service/baseService/impl/TrHiddenDangerCheckPointServiceImpl.java
index 052c7d6..81a8ae1 100644
--- a/src/main/java/com/ruoyi/doublePrevention/service/baseService/impl/TrHiddenDangerCheckPointServiceImpl.java
+++ b/src/main/java/com/ruoyi/doublePrevention/service/baseService/impl/TrHiddenDangerCheckPointServiceImpl.java
@@ -1,5 +1,8 @@
package com.ruoyi.doublePrevention.service.baseService.impl;
+import com.ruoyi.doublePrevention.entity.SPI.SPIDataReqBO;
+import com.ruoyi.doublePrevention.entity.SPI.TroubleData;
+import com.ruoyi.doublePrevention.entity.SPI.TroubleLevel;
import com.ruoyi.doublePrevention.entity.dto.DataCountDangerLevelRectifiedRespDO;
import com.ruoyi.doublePrevention.entity.dto.DataCountDangerLevelRespDO;
import com.ruoyi.doublePrevention.repository.TrHiddenDangerCheckPointRepository;
@@ -31,4 +34,14 @@
public DataCountDangerLevelRectifiedRespDO listDangerLevelRectifiedCountByTime(Date startTime, Date endTime, List<Long> depIds) {
return checkPointRepository.listDangerLevelRectifiedCountByTime(startTime,endTime,depIds);
}
+
+ @Override
+ public List<TroubleData> getSPIData(SPIDataReqBO spiDataReqBO) {
+ return checkPointRepository.getSPIData(spiDataReqBO);
+ }
+
+ @Override
+ public TroubleLevel getTroubleLevel(SPIDataReqBO spiDataReqBO) {
+ return checkPointRepository.getTroubleLevel(spiDataReqBO);
+ }
}
--
Gitblit v1.9.2