From 9cb8d7e0f4ffca386b14a15f8a0aca4d1db23252 Mon Sep 17 00:00:00 2001
From: feiyu02 <risaku@163.com>
Date: 星期四, 30 十月 2025 15:58:45 +0800
Subject: [PATCH] 2025.10.30 新增单场景纵向统计接口

---
 src/main/kotlin/cn/flightfeather/supervision/lightshare/web/SearchController.kt |    9 ++++++++-
 1 files changed, 8 insertions(+), 1 deletions(-)

diff --git a/src/main/kotlin/cn/flightfeather/supervision/lightshare/web/SearchController.kt b/src/main/kotlin/cn/flightfeather/supervision/lightshare/web/SearchController.kt
index d95a418..4f9ad5f 100644
--- a/src/main/kotlin/cn/flightfeather/supervision/lightshare/web/SearchController.kt
+++ b/src/main/kotlin/cn/flightfeather/supervision/lightshare/web/SearchController.kt
@@ -1,5 +1,6 @@
 package cn.flightfeather.supervision.lightshare.web
 
+import cn.flightfeather.supervision.config.IgnoreResponseAdvice
 import cn.flightfeather.supervision.lightshare.service.SearchService
 import cn.flightfeather.supervision.lightshare.service.SubtaskService
 import cn.flightfeather.supervision.lightshare.vo.ExcelConfigVo
@@ -23,6 +24,7 @@
     @Autowired
     lateinit var searchService: SearchService
 
+    @IgnoreResponseAdvice
     @GetMapping("/subtask")
     fun searchSubTask(
         @RequestParam("token") token: String,
@@ -47,7 +49,7 @@
     @GetMapping("/score/detail")
     fun getAutoScore(
         @ApiParam(value = "宸℃煡浠诲姟id") @RequestParam subTaskId: String,
-    ) = resPack { searchService.getScoreDetail(subTaskId) }
+    ) = searchService.getScoreDetail(subTaskId)
 
     @GetMapping("/subtask/jinshan")
     fun searchSubTask2(
@@ -73,6 +75,7 @@
         @RequestParam("per_page", required = false) perPage: Int?
     ) = subtaskService.searchSubTask3(token, updateTime, sceneType, districtCode, startTime, endTime, page, perPage)
 
+    @IgnoreResponseAdvice
     @ApiOperation(value = "鑾峰彇宸℃煡浠诲姟缁熻鎶ュ憡")
     @PostMapping("/subtask/excel")
     fun getExcel(
@@ -80,17 +83,20 @@
         @ApiIgnore response: HttpServletResponse
     ) = searchService.getExcel(config, response)
 
+    @IgnoreResponseAdvice
     @PostMapping("/subtask/detail")
     fun getExcel(
         @RequestBody config: ExcelConfigVo
     ) = searchService.getSubTaskDetail(config)
 
+    @IgnoreResponseAdvice
     @PostMapping("/subtask/pic/download")
     fun downloadPic(
         @RequestBody config: ExcelConfigVo,
         @ApiIgnore response: HttpServletResponse
     ) = searchService.downloadPic(config, response)
 
+    @IgnoreResponseAdvice
     @GetMapping("/subtask/pic/download2")
     fun downloadPic2(
         @RequestParam("sceneType") sceneType: Int,
@@ -107,6 +113,7 @@
         @RequestParam("perPage") perPage: Int
     ) = searchService.searchSubTaskByKeyword(userId, keyword, page, perPage)
 
+    @IgnoreResponseAdvice
     @PostMapping("/dailyreport")
     fun getDailyReport(
         @RequestBody config: ExcelConfigVo

--
Gitblit v1.9.3