feat(file-management): 添加文件管理功能并支持环境配置

- 在 application.yml 和环境特定的配置文件中添加文件存储目录路径配置
- 新增 Stage 环境配置文件和相关设置
- 修改 WmsFileManagementController 以使用配置文件中的目录路径
- 优化文件管理相关 API 的错误处理和路径获取方式
This commit is contained in:
2025-08-04 13:11:14 +08:00
parent b8a0792b5d
commit d1255c0312
6 changed files with 217 additions and 12 deletions

View File

@@ -79,6 +79,13 @@
<logging.level>warn</logging.level>
</properties>
</profile>
<profile>
<id>stage</id>
<properties>
<profiles.active>stage</profiles.active>
<logging.level>warn</logging.level>
</properties>
</profile>
</profiles>
<!-- 依赖声明 -->