From 8f3bf7050e65fdbe55eaad74fde307c57dab960e Mon Sep 17 00:00:00 2001
From: 云 <2163098428@qq.com>
Date: 星期五, 24 七月 2026 17:25:55 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/dev_business' into dev_business

---
 yudao-module-system/src/main/java/cn/iocoder/yudao/module/system/api/storage/StorageAttachmentApi.java |   17 +++++++++++++++++
 1 files changed, 17 insertions(+), 0 deletions(-)

diff --git a/yudao-module-system/src/main/java/cn/iocoder/yudao/module/system/api/storage/StorageAttachmentApi.java b/yudao-module-system/src/main/java/cn/iocoder/yudao/module/system/api/storage/StorageAttachmentApi.java
new file mode 100644
index 0000000..3d26f6e
--- /dev/null
+++ b/yudao-module-system/src/main/java/cn/iocoder/yudao/module/system/api/storage/StorageAttachmentApi.java
@@ -0,0 +1,17 @@
+package cn.iocoder.yudao.module.system.api.storage;
+
+import cn.iocoder.yudao.module.system.api.storage.dto.StorageBlobRespDTO;
+
+import java.util.List;
+
+public interface StorageAttachmentApi {
+
+    void bindAttachments(String application, String recordType, Long recordId, List<Long> blobIds);
+
+    List<StorageBlobRespDTO> listAttachments(String recordType, Long recordId);
+
+    void deleteAttachments(List<Long> attachmentIds);
+
+    void deleteAttachmentsByRecord(String recordType, Long recordId);
+
+}

--
Gitblit v1.9.3