From aed297a5fbc8df9dab01b28da21f872ee546b43c Mon Sep 17 00:00:00 2001
From: feiyu02 <risaku@163.com>
Date: 星期一, 13 十月 2025 16:15:11 +0800
Subject: [PATCH] 2025.10.13 1. 统一调整controller层的返回类型,通过添加全局响应增强器GlobalResponseAdvice来管理返回结果; 2. 新增mybatis-generator自定义插件,实现给数据库实体entity自动添加swagger注解@ApiModel和@ApiModelProperty

---
 src/main/kotlin/cn/flightfeather/supervision/lightshare/web/SearchController.kt |   20 ++++++++++++++++++++
 1 files changed, 20 insertions(+), 0 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 731bee0..486aca7 100644
--- a/src/main/kotlin/cn/flightfeather/supervision/lightshare/web/SearchController.kt
+++ b/src/main/kotlin/cn/flightfeather/supervision/lightshare/web/SearchController.kt
@@ -1,10 +1,12 @@
 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
 import io.swagger.annotations.Api
 import io.swagger.annotations.ApiOperation
+import io.swagger.annotations.ApiParam
 import org.springframework.beans.factory.annotation.Autowired
 import org.springframework.web.bind.annotation.*
 import springfox.documentation.annotations.ApiIgnore
@@ -22,6 +24,7 @@
     @Autowired
     lateinit var searchService: SearchService
 
+    @IgnoreResponseAdvice
     @GetMapping("/subtask")
     fun searchSubTask(
         @RequestParam("token") token: String,
@@ -41,6 +44,12 @@
         @RequestParam("page", required = false) page: Int?,
         @RequestParam("per_page", required = false) perPage: Int?
     ) = searchService.searchScore4JingAn(token, year, month, page, perPage)
+
+    @ApiOperation(value = "鏌ユ壘宸℃煡浠诲姟鑷姩璇勪及鐨勮瘎鍒嗙粏鑺�")
+    @GetMapping("/score/detail")
+    fun getAutoScore(
+        @ApiParam(value = "宸℃煡浠诲姟id") @RequestParam subTaskId: String,
+    ) = resPack { searchService.getScoreDetail(subTaskId) }
 
     @GetMapping("/subtask/jinshan")
     fun searchSubTask2(
@@ -66,23 +75,28 @@
         @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(
         @RequestBody config: ExcelConfigVo,
         @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,
@@ -98,4 +112,10 @@
         @RequestParam("page") page: Int,
         @RequestParam("perPage") perPage: Int
     ) = searchService.searchSubTaskByKeyword(userId, keyword, page, perPage)
+
+    @IgnoreResponseAdvice
+    @PostMapping("/dailyreport")
+    fun getDailyReport(
+        @RequestBody config: ExcelConfigVo
+    ) = searchService.getDailyReport(config)
 }
\ No newline at end of file

--
Gitblit v1.9.3