fix:联调航线上传

This commit is contained in:
高大 2026-01-28 11:20:40 +08:00
parent 94d7cf232b
commit 747539cec7
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ import java.io.ByteArrayOutputStream;
* @author ruoyi * @author ruoyi
*/ */
@Service @Service
@ConditionalOnProperty(name = "file.storage", havingValue = "local", matchIfMissing = true) @ConditionalOnProperty(name = "file.storage", havingValue = "local")
public class LocalSysFileServiceImpl implements ISysFileService { public class LocalSysFileServiceImpl implements ISysFileService {
/** /**
* 资源映射路径 前缀 * 资源映射路径 前缀

View File

@ -22,7 +22,7 @@ import java.io.InputStream;
* @author ruoyi * @author ruoyi
*/ */
@Service @Service
@ConditionalOnProperty(name = "file.storage", havingValue = "minio") @ConditionalOnProperty(name = "file.storage", havingValue = "minio", matchIfMissing = true)
public class MinioSysFileServiceImpl implements ISysFileService { public class MinioSysFileServiceImpl implements ISysFileService {
@Autowired @Autowired
private MinioConfig minioConfig; private MinioConfig minioConfig;