运维-物资管理接口
This commit is contained in:
@ -39,4 +39,10 @@ public interface RemoteFileService {
|
||||
|
||||
|
||||
void deleteFile(Collection<String> urls);
|
||||
|
||||
/**
|
||||
* 通过ossId列表删除
|
||||
* @param ossIds
|
||||
*/
|
||||
void deleteFileByIds(Collection<Long> ossIds);
|
||||
}
|
||||
|
||||
@ -56,4 +56,9 @@ public class RemoteFileServiceMock implements RemoteFileService {
|
||||
log.warn("服务调用异常 -> 降级处理");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void deleteFileByIds(Collection<Long> ossIds) {
|
||||
log.warn("服务调用异常 -> 降级处理");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user