From 4ab7884641070af6dd1d7a5f4192018d346febda Mon Sep 17 00:00:00 2001 From: jishenghua <752718920@qq.com> Date: Mon, 2 Dec 2024 22:52:43 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=99=E5=95=86=E5=93=81=E5=92=8C=E5=8D=95?= =?UTF-8?q?=E6=8D=AE=E7=9A=84=E6=89=B9=E9=87=8F=E5=88=A0=E9=99=A4=E5=81=9A?= =?UTF-8?q?=E5=9B=BE=E7=89=87=E7=9A=84=E9=80=BB=E8=BE=91=E5=88=A0=E9=99=A4?= =?UTF-8?q?(=E7=BB=99=E8=B7=AF=E5=BE=84=E5=8A=A0=E4=B8=8Alist,=E6=96=B9?= =?UTF-8?q?=E4=BE=BF=E5=8C=BA=E5=88=86)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/jsh/erp/service/systemConfig/SystemConfigService.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jshERP-boot/src/main/java/com/jsh/erp/service/systemConfig/SystemConfigService.java b/jshERP-boot/src/main/java/com/jsh/erp/service/systemConfig/SystemConfigService.java index ab733dc4..d88d03cf 100644 --- a/jshERP-boot/src/main/java/com/jsh/erp/service/systemConfig/SystemConfigService.java +++ b/jshERP-boot/src/main/java/com/jsh/erp/service/systemConfig/SystemConfigService.java @@ -410,8 +410,8 @@ public class SystemConfigService { String filePathStr = StringUtil.isNotEmpty(filePath)? filePath.substring(1):""; String sourceObjectKey = filePathStr + "/" + path; String sourceSmallObjectKey = filePathStr + "-small/" + path; - String destinationObjectKey = DELETED + "/" + sourceObjectKey; - String destinationSmallObjectKey = DELETED + "/" + sourceSmallObjectKey; + String destinationObjectKey = DELETED + "/list/" + sourceObjectKey; + String destinationSmallObjectKey = DELETED + "/list/" + sourceSmallObjectKey; this.copySourceToDest(ossClient, bucketName, sourceObjectKey, destinationObjectKey); this.copySourceToDest(ossClient, bucketName, sourceSmallObjectKey, destinationSmallObjectKey); } catch (Exception e) {