表格加密导出解密内容小工具类

This commit is contained in:
2026-01-29 15:24:23 +08:00
parent fe3db4cbce
commit 1b00900808
6 changed files with 1150 additions and 0 deletions

18
pom.xml
View File

@@ -56,6 +56,24 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>5.8.41</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>4.1.2</version> <!-- 稳定版本,适配大部分项目,可根据需求升级 -->
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>4.1.2</version>
</dependency>
</dependencies>
<build>