From 635d28025fa6805ef11054da2874659430448972 Mon Sep 17 00:00:00 2001 From: cwchen <1048842385@qq.com> Date: Sat, 23 Mar 2024 14:05:35 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9B=BE=E7=89=87=E4=B8=8A=E4=BC=A0=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../background/service/impl/HumanServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/securitycontrol-model/securitycontrol-background/src/main/java/com/securitycontrol/background/service/impl/HumanServiceImpl.java b/securitycontrol-model/securitycontrol-background/src/main/java/com/securitycontrol/background/service/impl/HumanServiceImpl.java index 5058e31..5f6bfc1 100644 --- a/securitycontrol-model/securitycontrol-background/src/main/java/com/securitycontrol/background/service/impl/HumanServiceImpl.java +++ b/securitycontrol-model/securitycontrol-background/src/main/java/com/securitycontrol/background/service/impl/HumanServiceImpl.java @@ -94,7 +94,7 @@ public class HumanServiceImpl implements HumanService { if (file != null) { Result result = remoteFileService.singleUploadFile(file, SecurityConstants.INNER); if(result != null && result.getCode() == HttpStatus.ERROR) { - return AjaxResult.error("人员照片上传失败"); + log.error("人员照片上传失败"); }else if(result != null && result.getCode() == HttpStatus.SUCCESS && result.getData() != null){ String jsonString = JSON.toJSONString(result.getData()); JSONObject item = JSON.parseObject(jsonString);