From c050d6f73f498e93e3d4ab055f51cb2c4bbbcfe0 Mon Sep 17 00:00:00 2001 From: chenhc <2369838784@qq.com> Date: Fri, 28 Mar 2025 15:04:03 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=9B=BE=E7=89=87=E5=90=8C=E6=AD=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../sale/admin/idc/service/impl/FileServiceImpl.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/api-admin/src/main/java/com/glxp/sale/admin/idc/service/impl/FileServiceImpl.java b/api-admin/src/main/java/com/glxp/sale/admin/idc/service/impl/FileServiceImpl.java index bdc492e..ad8c89e 100644 --- a/api-admin/src/main/java/com/glxp/sale/admin/idc/service/impl/FileServiceImpl.java +++ b/api-admin/src/main/java/com/glxp/sale/admin/idc/service/impl/FileServiceImpl.java @@ -52,6 +52,7 @@ public class FileServiceImpl implements FileService { @Resource private IdcService idcService; private String imagePath = "register/file/image2/"; + private String devImagePath = "register/file/device/"; @Override public BaseResponse fileUpload(HttpServletRequest request,Map params) { String host=""; @@ -128,13 +129,13 @@ public class FileServiceImpl implements FileService { ArrayList saveFiles = new ArrayList<>(); Date startTime = new Date(); if (files != null) { - if(!FileUtils.makeDirectory(filePath + filePathSlash + imagePath)) - IDCUtils.createDirectory(filePath + filePathSlash + imagePath); + if(!FileUtils.makeDirectory(filePath + filePathSlash + devImagePath)) + IDCUtils.createDirectory(filePath + filePathSlash + devImagePath); try { for (MultipartFile file : files) { - String imageName = filePath + filePathSlash + imagePath + file.getOriginalFilename(); + String imageName = filePath + filePathSlash + devImagePath + file.getOriginalFilename(); saveFiles.add(imageName); - IDCUtils.writeFile(file.getBytes(), filePath + filePathSlash + imagePath, file.getOriginalFilename()); + IDCUtils.writeFile(file.getBytes(), filePath + filePathSlash + devImagePath, file.getOriginalFilename()); } } catch (IOException e) { // TODO Auto-generated catch block