From fb33cb788cad992f8abcb3bd5951d1d0785c9371 Mon Sep 17 00:00:00 2001 From: hshansha Date: Fri, 24 Oct 2025 16:13:20 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AF=84=E6=B5=8B=E5=BE=97=E5=88=86=E7=BB=93?= =?UTF-8?q?=E6=9E=9C=E6=9B=B4=E6=96=B0=E7=94=9F=E6=88=90=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/ruoyi/kaohe/service/impl/KhKhrwResultServiceImpl.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ruoyi-kaohe/src/main/java/com/ruoyi/kaohe/service/impl/KhKhrwResultServiceImpl.java b/ruoyi-kaohe/src/main/java/com/ruoyi/kaohe/service/impl/KhKhrwResultServiceImpl.java index dae9d48..35030c5 100644 --- a/ruoyi-kaohe/src/main/java/com/ruoyi/kaohe/service/impl/KhKhrwResultServiceImpl.java +++ b/ruoyi-kaohe/src/main/java/com/ruoyi/kaohe/service/impl/KhKhrwResultServiceImpl.java @@ -253,9 +253,10 @@ public class KhKhrwResultServiceImpl implements IKhKhrwResultService if(isUpdate){ pcResult.setId(pc.getPcResultId()); this.updateKhKhrwResult(pcResult); + return AjaxResult.success("更新成功"); }else{ this.insertKhKhrwResult(pcResult); + return AjaxResult.success(); } - return AjaxResult.success(); } }