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) {