feat(system): 添加电票管理系统功能

- 新增发票记录的增删改查功能
- 实现发票状态管理(未处理、处理失败、已成功)
- 集成外部开票系统接口对接
- 添加批量处理发票功能
- 配置发票系统相关参数
- 创建发票管理前后端页面模板
- 实现发票数据与外部系统的同步机制
This commit is contained in:
Gjm
2026-04-10 10:26:01 +08:00
parent 79656d3019
commit 584cf4fd92
20 changed files with 1817 additions and 4 deletions

45
pom.xml
View File

@@ -247,7 +247,50 @@
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
</dependency>
<dependency>
<groupId>com.oracle.database.jdbc</groupId>
<artifactId>ojdbc8</artifactId>
<version>19.8.0.0</version>
</dependency>
<dependency>
<groupId>com.oracle.database.nls</groupId>
<artifactId>orai18n</artifactId>
<version>19.8.0.0</version>
</dependency>
<!-- Java 21 必加:解决 JAXB 缺失报错 -->
<!-- JAXB API -->
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
<version>2.3.3</version>
</dependency>
<!-- JAXB 实现 -->
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-core</artifactId>
<version>2.3.0</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>2.3.0</version>
</dependency>
<!-- 高版本 JDK 必须的激活依赖 -->
<dependency>
<groupId>jakarta.activation</groupId>
<artifactId>jakarta.activation-api</artifactId>
<version>1.2.2</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
</dependencies>
<build>