【新增】增加通过文件id查询文件详情接口

This commit is contained in:
初衷
2024-08-27 10:17:50 +08:00
parent 93111a8490
commit 655779b289
2 changed files with 20 additions and 0 deletions

View File

@@ -12,6 +12,7 @@
*/
package vip.xiaonuo.dev.api;
import cn.hutool.json.JSONObject;
import org.springframework.web.multipart.MultipartFile;
/**
@@ -101,4 +102,12 @@ public interface DevFileApi {
* @date 2022/6/22 17:44
**/
String storageFileWithReturnIdMinio(MultipartFile file);
/**
* 通过文件id查询文件详情
*
* @author chengchuanyao
* @date 2024/7/26 16:10
*/
JSONObject getFileInfoById(String id);
}