From f65ddb2a2b7f14964baae6576d6ebf2922bf807d Mon Sep 17 00:00:00 2001 From: "liu.zixi" Date: Tue, 2 Dec 2025 11:12:04 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=81=9C=E6=AD=A2=E4=BC=9A=E8=AF=9D?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3=E6=94=B9get?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/com/xboe/module/boecase/api/CaseAiChatApi.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/servers/boe-server-all/src/main/java/com/xboe/module/boecase/api/CaseAiChatApi.java b/servers/boe-server-all/src/main/java/com/xboe/module/boecase/api/CaseAiChatApi.java index bbf5b39a..5cde7b0c 100644 --- a/servers/boe-server-all/src/main/java/com/xboe/module/boecase/api/CaseAiChatApi.java +++ b/servers/boe-server-all/src/main/java/com/xboe/module/boecase/api/CaseAiChatApi.java @@ -59,13 +59,13 @@ public class CaseAiChatApi extends ApiBaseController { // 获取当前用户 return caseAiChatService.chat(caseAiChatDto, getCurrent()); } - + /** * 停止当前聊天输出 * @param conversationId 会话ID * @return 是否成功停止 */ - @PostMapping("/stop") + @GetMapping("/stop") public JsonResponse stopChat(@RequestParam String conversationId) { try { boolean result = caseAiChatService.stopChatOutput(conversationId);