在线巡查、非现场执法审核等功能优化完善

This commit is contained in:
luolianxin 2025-04-25 17:52:25 +08:00
parent a9cc70fb7f
commit 2cfb465bcc
6 changed files with 2 additions and 13 deletions

View File

@ -20,7 +20,6 @@
</div> </div>
</div> </div>
</el-collapse-item> </el-collapse-item>
<!-- 安全监管信息 --> <!-- 安全监管信息 -->
<el-collapse-item name="supervision"> <el-collapse-item name="supervision">
<template #title> <template #title>

View File

@ -313,7 +313,6 @@ function handleQuery(queryParams) {
} }
// //
function handleDetail(row) { function handleDetail(row) {
dialogConfig.value.show = true dialogConfig.value.show = true

View File

@ -35,7 +35,6 @@ public class EnforceCheckController {
} }
/** /**
* 创建执法检查记录 * 创建执法检查记录
* *

View File

@ -74,7 +74,6 @@ public class HikVisionController {
} }
/** /**
* 获取监控点预览取流 * 获取监控点预览取流
* *

View File

@ -45,15 +45,6 @@ import java.util.Objects;
group by format(a.createTime as 'yyyy') group by format(a.createTime as 'yyyy')
order by createTime order by createTime
"""), """),
@NamedQuery(name = "getfxczftjByMonth", query = """
select
format(a.createTime as 'yyyy-MM') as createTime,
count(a) as zs
from OnlinePatrol a
where a.createTime >= :startTime and a.createTime <= :endTime
group by format(a.createTime as 'yyyy-MM')
order by createTime
"""),
}) })
@SqlResultSetMappings({ @SqlResultSetMappings({
@SqlResultSetMapping( @SqlResultSetMapping(

View File

@ -69,6 +69,8 @@ public class OnlinePatrolService {
List<Map<String, Object>> list = uploadAllFiles(files); List<Map<String, Object>> list = uploadAllFiles(files);
onlinePatrol.setAnnexs(list); onlinePatrol.setAnnexs(list);
} }
onlinePatrolRepository.save(onlinePatrol); onlinePatrolRepository.save(onlinePatrol);
} }