From 79bd8ea222cc3518ec91dce3dfb30fcf387cf96d Mon Sep 17 00:00:00 2001 From: feiyu02 <risaku@163.com> Date: 星期五, 25 四月 2025 16:45:13 +0800 Subject: [PATCH] 新增应急巡查线索任务相关接口 --- src/main/kotlin/com/flightfeather/grid/web/ClueQuestionController.kt | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/src/main/kotlin/com/flightfeather/grid/web/ClueQuestionController.kt b/src/main/kotlin/com/flightfeather/grid/web/ClueQuestionController.kt index 8426c88..36bfb6b 100644 --- a/src/main/kotlin/com/flightfeather/grid/web/ClueQuestionController.kt +++ b/src/main/kotlin/com/flightfeather/grid/web/ClueQuestionController.kt @@ -37,7 +37,8 @@ @GetMapping("/fetch") fun getClueQuestion( @ApiParam("绾跨储id") @RequestParam clueId: String, - ) = resPack { clueQuestionService.getClueQuestion(clueId) } + @ApiParam("鏄惁涓虹嚎绱�") @RequestParam(required = false) internal: Boolean?, + ) = resPack { clueQuestionService.getClueQuestion(clueId, internal) } @ApiOperation("鎺ㄩ�佺嚎绱㈤棶棰樺強鍥剧墖鑷崇涓夋柟") @PostMapping("/push") -- Gitblit v1.9.3