feat(file): 添加文件上传接口参数名称

- 为 FileController 的 upload 方法 MultipartFile 参数添加 name 属性
- 在 zkh-common 模块中引入 jakarta.validation-api 和 jakarta.annotation-api 依赖
- 将 springdoc-openapi-common 依赖升级为 springdoc-openapi-starter-webmvc-ui 并指定版本
- 为多个模块的 maven-compiler-plugin 配置添加 -parameters 编译参数
- 移除 zkh-file 和 zkh-web 模块中重复或不必要的 springdoc-openapi 依赖声明
This commit is contained in:
zkh
2025-12-07 18:19:29 +08:00
parent 042ef9a81e
commit 1f3fea8277
6 changed files with 40 additions and 14 deletions

View File

@ -46,6 +46,9 @@
<version>1.18.42</version>
</path>
</annotationProcessorPaths>
<compilerArgs>
<arg>-parameters</arg>
</compilerArgs>
</configuration>
</plugin>
<plugin>