运维-物资管理接口

This commit is contained in:
2025-09-30 15:45:27 +08:00
parent 1ab49c4178
commit 71dba8bb2d
21 changed files with 439 additions and 25 deletions

View File

@ -39,4 +39,10 @@ public interface RemoteFileService {
void deleteFile(Collection<String> urls);
/**
* 通过ossId列表删除
* @param ossIds
*/
void deleteFileByIds(Collection<Long> ossIds);
}

View File

@ -56,4 +56,9 @@ public class RemoteFileServiceMock implements RemoteFileService {
log.warn("服务调用异常 -> 降级处理");
}
@Override
public void deleteFileByIds(Collection<Long> ossIds) {
log.warn("服务调用异常 -> 降级处理");
}
}