会员卡管理功能初步完成

This commit is contained in:
时舟年
2026-05-24 00:57:22 +08:00
parent 2325c66c37
commit cd44caee57
39 changed files with 2570 additions and 677 deletions
+28
View File
@@ -61,12 +61,40 @@
<artifactId>spring-context</artifactId>
</dependency>
<!-- Redis响应式支持 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis-reactive</artifactId>
</dependency>
<!-- &lt;!&ndash; ⭐ Redisson 响应式客户端 &ndash;&gt;-->
<!-- <dependency>-->
<!-- <groupId>org.redisson</groupId>-->
<!-- <artifactId>redisson-spring-boot-starter</artifactId>-->
<!-- <version>3.27.0</version>-->
<!-- </dependency>-->
<!-- &lt;!&ndash; ⭐ RabbitMQ 支持 &ndash;&gt;-->
<!-- <dependency>-->
<!-- <groupId>org.springframework.boot</groupId>-->
<!-- <artifactId>spring-boot-starter-amqp</artifactId>-->
<!-- </dependency>-->
<!-- Jackson for JSON处理 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-json</artifactId>
</dependency>
<!-- ⭐ 必须添加:测试依赖 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>