监测点按运行状态、前置机统计数据

This commit is contained in:
xy
2024-07-26 14:18:47 +08:00
parent 500b6c66bb
commit 2caeb0c264
14 changed files with 843 additions and 24 deletions

View File

@@ -14,6 +14,6 @@ public interface LineDetailMapper extends Mapper<LineDetail> {
List<LineDetailExcelBody> selectAllExcelData();
}

View File

@@ -1,6 +1,7 @@
package com.njcn.mapper.data;
import com.njcn.pojo.commons.SimpleValue;
import com.njcn.pojo.commons.device.LineInfo;
import com.njcn.pojo.commons.runmanage.IntergralityTable;
import com.njcn.pojo.data.Integrity;
import org.apache.ibatis.annotations.Param;
@@ -27,4 +28,6 @@ public interface IntegrityMapper extends Mapper<Integrity> {
List<IntergralityTable> selectIntegrityData(@Param("list") List<Integer> tempIndexs,@Param("startTime")Date startTime,@Param("endTime") Date endTime);
List<IntergralityTable> selectGWIntegrityData(@Param("list") List<Integer> tempIndexs,@Param("startTime")Date startTime,@Param("endTime") Date endTime);
List<LineInfo> getLineInfo(@Param("list") List<Integer> tempIndexs,@Param("postType") Integer postType, @Param("powerId") Integer powerId);
}