文件上传

This commit is contained in:
2025-10-31 22:55:16 +08:00
parent 7fd1720826
commit 4e8fd1f38e
10 changed files with 779 additions and 0 deletions

38
vetti-hotake/pom.xml Normal file
View File

@@ -0,0 +1,38 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.vetti</groupId>
<artifactId>vetti-service</artifactId>
<version>3.9.0</version>
</parent>
<artifactId>vetti-hotake</artifactId>
<dependencies>
<!-- 防止进入swagger页面报类型转换错误排除3.0.0中的引用手动增加1.6.2版本 -->
<dependency>
<groupId>io.swagger</groupId>
<artifactId>swagger-models</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<!-- 通用工具-->
<dependency>
<groupId>com.vetti</groupId>
<artifactId>vetti-common</artifactId>
</dependency>
<dependency>
<groupId>com.vetti</groupId>
<artifactId>vetti-system</artifactId>
</dependency>
</dependencies>
</project>